-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
50 lines (50 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: {
files: ["*.{html, css, js}"],
relative: true
},
safelist: [
'bg-black',
'bg-white',
'bg-custom-white',
'hover:bg-custom-white',
'bg-custom-gray',
'bg-stone-900',
'border-blue-400',
'bg-blue-400',
'border-red-400',
'bg-red-400',
'bg-green-400',
'w-[135px]',
'h-[45px]',
],
theme: {
extend: {
fontFamily: {
'inconsolata': ["Inconsolata", "monospace"],
'inika': ["Inika", "serif"],
},
container: {
center: true,
padding: "1rem",
screens: {
lg: "1024px",
xl: "1024px",
"2xl": "1024px",
},
},
colors: {
"custom-black": "#242424",
"custom-black-2": "#2F2F2F",
"custom-purple": "#646CFF",
"custom-gray": "#999",
"custom-white": "#a8a8a8",
// ...color-name: color-code (hex/hsl/rgb/rgba/hsla...)
},
},
},
plugins: [
'preflight'
],
};