-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
94 lines (94 loc) · 1.99 KB
/
tailwind.config.js
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
module.exports = {
darkMode: 'class',
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./lib/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
background: {
light: '#FFFFFF',
lightCode: '#EFEFEF',
DEFAULT: '#FFFFFF',
dark: '#2A0A33',
},
primary: {
light: '#4B4B4B',
DEFAULT: '#4B4B4B',
dark: '#FFFFFF',
},
secondary: {
light: '#D64545',
DEFAULT: '#D64545',
dark: '#15FFE6',
},
tertiary: {
light: '#2800FF',
DEFAULT: '#2800FF',
dark: '#D091FF',
},
chip: {
light: '#c3c3c3',
DEFAULT: '#303030',
dark: '#202020',
},
hover: {
light: '#1C01B0',
DEFAULT: '#1C01B0',
dark: '#8C0DE1',
},
'code-background': {
light: '#EFEFEF',
DEFAULT: '#4B4B4B',
dark: '#252525',
},
visited: '#FFB400',
},
fontFamily: {
'sans': [
'-apple-system',
'BlinkMacSystemFont',
'"Noto Sans"',
'sans-serif',
'Arial',
'Roboto',
'"Segoe UI"',
'ui-sans-serif',
'system-ui',
'"Apple Color Emoji"',
'"Noto Color Emoji"',
'"Segoe UI Emoji"',
],
'mono': [
'Menlo',
'ui-monospace',
'SFMono-Regular',
'Monaco',
'Consolas',
'monospace',
],
},
gridTemplateColumns: {
'article-layout': '1fr min(65ch, 100%) 1fr',
'navbar-layout': '1fr min(100ch, 100%) 1fr',
},
maxHeight: {
'3/5': '60vh',
'4/5': '80vh',
},
maxWidth: {
'164px': '164px',
},
},
},
variants: {
extend: {
margin: ['first'],
textColor: ['visited'],
display: ['last'],
border: ['last'],
}
},
plugins: [],
}