-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.ts
58 lines (56 loc) · 1.29 KB
/
theme.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import { extendTheme, ThemeConfig } from '@chakra-ui/react';
const config: ThemeConfig = {
initialColorMode: 'dark',
useSystemColorMode: false,
};
const theme = extendTheme({
config,
shadows: {
outline: '#fff',
},
styles: {
global: () => ({
body: {
bg: 'blackAlpha.300',
},
}),
},
colors: {
btbets: {
50: '#3301ff', // Main color
100: '#3301ff', // Main color
200: '#3301ff', // Main color
300: '#3301ff', // Main color
400: '#3301ff', // Main color
500: '#3301ff', // Main color
600: '#3301ff', // Main color
700: '#3301ff', // Main color
800: '#3301ff', // Main color
900: '#3301ff', // Main color
},
},
components: {
Button: {
variants: {
'with-shadow': {
bg: 'red.400',
boxShadow: '0 0 2px 2px #efdfde',
},
'red-gradient': {
fontFamily: 'heading',
bgGradient: 'linear(to-r, red.400,red.600)',
color: 'white',
_hover: {
bgGradient: 'linear(to-r, red.400,red.600)',
boxShadow: 'xl',
},
_active: {
bgGradient: 'linear(to-r, red.600,red.800)',
boxShadow: 'xl',
},
},
},
},
},
});
export default theme;