-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
56 lines (56 loc) · 1.2 KB
/
Copy pathtailwind.config.js
File metadata and controls
56 lines (56 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.{html,js}", "./projects/*.html", "./devices/*.html"],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
'base': {
light: '#eff1f5',
dark: '#1e1e2e'
},
'text': {
light: '#4c4f69',
dark: '#cdd6f4'
},
},
extend: {
colors: {
// yes fucked up way of declaring this ik but tailwind is weird and i have a massive skill issue
'surface0': {
light: '#ccd0fa',
dark: '#313244'
},
'red': {
light: '#d20f39',
dark: '#f38ba8'
},
'yellow': {
light: '#df8e1d',
dark: '#f9e2af'
},
'green': {
light: '#40a02b',
dark: '#a6e3a1'
},
'blue': {
light: '#1e66f5',
dark: '#89b4fa'
},
'mauve': {
light: '#8839ef',
dark: '#cba6f7'
},
'pink': {
light: '#ea76cb',
dark: '#f5c2e7'
},
'surface2': {
light: '#acb0be',
dark: '#585b70'
}
}
}
},
plugins: [],
}