-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.ts
62 lines (60 loc) · 1.38 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
59
60
61
62
import { extendTheme, type ThemeConfig } from '@chakra-ui/react';
const customTheme: ThemeConfig = extendTheme(
{
initialColorMode: 'light',
useSystemColorMode: false,
colors: {
brand: {
500: 'linear-gradient(273.1deg, #153FFF 1.57%, #4790FF 118.62%)',
600: '#153FFF',
},
black: {
500: '#141414',
},
gray: {
100: '#F7F7F7',
300: '#FFFFFF78',
400: '#C0C0C0',
600: '#686868',
700: '#ECECEC',
},
},
styles: {
global: {
a: {
color: '#3166DD',
},
'ul, ol': {
margin: '0 0 1rem',
paddingLeft: '2rem',
},
h1: {
fontSize: ['1.875rem', '2.5rem'],
fontWeight: '700',
},
h2: {
fontSize: ['1.5rem', '2rem'],
fontWeight: '700',
},
h3: {
fontSize: ['1.25rem', '1.5rem'],
fontWeight: '700',
},
'h4, h5, h6': {
fontWeight: '700',
},
'img, svg, video, canvas, audio, iframe, embed, object': {
display: 'initial'
},
'pre, code, kbd, samp': {
fontSize: '90%',
},
'.olvy-tab-launcher-right': {
zIndex: '100!important',
display: ['none!important', 'flex!important'],
}
},
},
},
);
export default customTheme;