-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
62 lines (61 loc) · 1.49 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
54
55
56
57
58
59
60
61
62
const colors = require("tailwindcss/colors");
module.exports = {
purge: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
darkMode: false, // or 'media' or 'class'
theme: {
gridTemplateColumns: {
"perc-20-2": "20% 1fr",
"perc-30-2": "30% 1fr",
"perc-50-2": "50% 1fr",
"tasklist-item": "60px 1fr 64px",
"sidebar-15": "15rem 1fr",
"fill-40": "repeat(auto-fill, 10rem)",
"fill-50": "repeat(auto-fill, 20rem)",
},
colors: {
theme_blur: "#D3D3D34D",
theme_blue: "#464660",
theme_green: "#368B85",
theme_eagle: "#B4B897",
theme_dawn_pink: {
light: "#F1E9E580",
DEFAULT: "#F1E9E5",
},
white: colors.white,
black: {
ten_op: "#0000001A",
fifteen_op: "#00000026",
twenty_op: "#00000033",
thirty_op: "#0000004D",
forty_op: "#00000066",
fifty_op: "#00000080",
sixty_op: "#00000099",
DEFAULT: colors.black,
},
green: colors.green,
red: colors.red,
yellow: colors.yellow,
gray: colors.gray,
},
fontFamily: {
primary: ["Montserrat", "DejaVu Sans", "Verdana", "sans‑serif"],
secondary: [
"Lato",
"Avenir",
"Adobe Heiti Std",
"Segoe UI",
"Trebuchet MS",
"sans‑serif",
],
heading: ["Red Hat Display", "sans-serif"],
},
extend: {},
},
variants: {
extend: {},
},
plugins: [],
};