-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtailwind.config.cjs
51 lines (49 loc) · 1.27 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
49
50
51
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
darkMode: 'class',
theme: {
extend: {
colors: {
'regal-blue': '#243c5a',
'code-gray': '#494949',
'white87': 'rgba(255, 255, 255, 0.87)',
'white12': 'rgba(255, 255, 255, 0.12)',
'grey119': '#888888',
'bgGrey': '#343434',
},
gridTemplateColumns: {
// Simple 16 column grid
'16': 'repeat(16, minmax(0, 1fr))',
'24': 'repeat(24, minmax(0, 1fr))',
},
gridColumn: {
'span-14': 'span 14 / span 14',
'span-15': 'span 15 / span 15',
'span-16': 'span 16 / span 16',
'span-17': 'span 17 / span 17',
'span-18': 'span 18 / span 18',
'span-19': 'span 19 / span 19',
'span-20': 'span 20 / span 20',
'span-21': 'span 21 / span 21',
'span-22': 'span 22 / span 22',
'span-23': 'span 23 / span 23',
'span-24': 'span 24 / span 24',
},
dropShadow: {
'3xl': '0.3vw 0.3vw .5vw rgba(0,0,0,0.9)',
},
boxShadow: {
'3xl': '0.3vw 0.3vw .5vw rgba(0,0,0,0.25)',
},
},
screens: {
'tablet': '640px',
// => @media (min-width: 640px) { ... }
'laptop': '1024px',
// => @media (min-width: 1024px) { ... }
'desktop': '1280px',
// => @media (min-width: 1280px) { ... }
},
},
plugins: [require('flowbite/plugin')]
};