-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
53 lines (51 loc) · 1.02 KB
/
tailwind.config.js
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
const brandColors = {
"pale-blue": "#bac7da",
"dark-blue": "#242526",
"dark-turquoise": "#263347",
"snake-green": "#00BC74",
};
const grayScale = {
white: "#FFFFFF",
"gray-light": "#F5F5F5",
"gray-light-mid": "#D8D8D8",
"gray-mid": "#949494",
"gray-mid-dark": "#6F6F6F",
"gray-dark": "#222222",
black: "#000000",
};
module.exports = {
mode: "jit",
purge: [
"./kontrasto/**/*.{js,ts,jsx,tsx,py,html}",
"./demo/**/*.{js,ts,jsx,tsx,py,html}",
],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
...brandColors,
...grayScale,
transparent: "transparent",
current: "currentColor",
},
fontWeight: {
// thin: 100,
// extralight: 200,
// light: 300,
normal: 400,
// medium: 500,
// semibold: 600,
bold: 700,
// extrabold: 800,
// black: 900,
},
extend: {
screens: {
print: { raw: "print" },
},
},
},
variants: {
extend: {},
},
plugins: [require("tailwindcss-rtl")],
};