-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
78 lines (77 loc) · 1.69 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
const isSyssyColors = true;
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
white: '#fff',
blue: {
darkestest: '#000e1c',
darkest: '#001326',
dark: '#001831',
DEFAULT: '#001C36',
light: '#00254a',
lightest: '#60A3EE',
},
radio: isSyssyColors
? // Syssy
{
common: '#9b3970',
controller: '#58265d',
bg: '#230127',
bg200: '#58265d',
action: '#db8841',
accent: '#db8841',
accent200: '#eef2b0',
secondary: '#9b3970',
promote: '#9b3970',
night: '#58265d',
}
: // Wappu
{
common: '#001C36',
controller: '#000e1c',
bg: '#001C36',
bg200: '#001831',
action: '#5bbfbf',
accent: '#F65F52',
accent200: '#F65F52',
secondary: '#5bbfbf',
header: '#F65F52',
promote: '#5bbfbf',
night: '#60A3EE',
},
},
fontFamily: {
sans: ['Montserrat', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
fontWeight: {
normal: 400,
bold: 600,
},
extend: {
width: {
128: '32rem',
144: '36rem',
160: '40rem',
192: '48rem',
256: '64rem',
},
height: {
128: '32rem',
144: '36rem',
160: '40rem',
192: '48rem',
256: '64rem',
},
},
},
variants: {
extend: {},
},
plugins: [],
};