-
Notifications
You must be signed in to change notification settings - Fork 15
/
tailwind.config.cjs
48 lines (43 loc) · 1.13 KB
/
tailwind.config.cjs
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
module.exports = {
darkMode: 'class',
content: [
'./src/pug/**/*.pug',
'./src/ts/**/*.tsx',
'./src/ts/**/*.ts'
],
mode: "jit",
theme: {
extend: {
fontFamily: {
"manrope": ["Manrope", "Manrope-fallback", "Century Gothic", "sans-serif"]
},
colors: {
"elevated": "#1C1C1E",
"elevated-2": "#262628",
"label": "#ddd",
"secondary": "#bbb",
"tertiary": "#555",
"quaternary": "#333",
"center-container-dark": "#121212"
},
screens: {
'lt-2xl': { 'max': '1536px' },
// => @media (max-width: 1536px) { ... }
'lt-xl': { 'max': '1280px' },
// => @media (max-width: 1280px) { ... }
'lt-lg': { 'max': '1024px' },
// => @media (max-width: 1024px) { ... }
'lt-md': { 'max': '768px' },
// => @media (max-width: 768px) { ... }
'lt-sm': { 'max': '640px' },
// => @media (max-width: 640px) { ... }
'lt-xsm': { 'max': '440px' },
// => @media (max-width: 480px) { ... }
},
container: {
center: 'true',
},
},
},
/* ... */
}