-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (60 loc) · 1.11 KB
/
tailwind.config.js
File metadata and controls
60 lines (60 loc) · 1.11 KB
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
module.exports = {
purge: [],
darkMode: false,
theme: {
fontFamily: {
display: ['DM Sans', 'sans-serif'],
body: ['Space Mono', 'sans-serif'],
},
colors: {
green: {
light: '#0F854E',
dark: '#1A4430',
},
thematic: {
cordscrobbler: {
light: '#E31B23',
dark: '#6C0D11',
},
gera: {
light: '#9B47D7',
dark: '#4F1D72',
},
covidmunicipal: {
light: '#305FF0',
dark: '#394364',
},
dinesdonkey: {
light: '#2B62CA',
dark: '#253741',
},
rusbe: {
light: '#C62828',
dark: '#8E0000',
},
pelejo: {
light: '#AC2E30',
dark: '#6F3536',
},
},
blue: {
dark: '#004F68',
DEFAULT: '#155E74'
},
pearl: '#FFFDF8',
},
extend: {
inset: {
'-42/100': '42%',
'-45/100': '45%',
},
width: {
'fit': 'fit-content',
}
},
},
variants: {
extend: {},
},
plugins: [],
}