-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
65 lines (64 loc) · 1.37 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
63
64
65
const colors = require("tailwindcss/colors");
module.exports = {
darkMode: "media",
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
black: colors.black,
white: colors.white,
gray: colors.coolGray,
indigo: colors.indigo,
teal: colors.teal,
red: colors.rose,
pink: colors.pink,
purple: colors.purple,
yellow: colors.amber,
blue: colors.blue,
primary: {
300: "#661F41",
400: "#B30056",
500: "#4576ff",
600: "#4576ff",
DEFAULT: "#4576ff",
},
light: {
100: "#F3F4F6",
200: "#E5E7EB",
300: "#D1D5DB",
400: "#9CA3AF",
DEFAULT: "#fff",
},
dark: {
darkest: "#1f2d3d",
dark: "#3c4858",
DEFAULT: "#222831",
light: "#e0e6ed",
lightest: "#f9fafc",
},
},
fontFamily: {
sans: ["Roboto Condensed", "system-ui"],
cursive: "Modak",
},
extend: {},
},
variants: {},
plugins: [],
purge: {
// Filenames to scan for classes
content: [
"./src/**/*.html",
"./src/**/*.js",
"./src/**/*.jsx",
"./src/**/*.ts",
"./src/**/*.tsx",
"./public/index.html",
],
// Options passed to PurgeCSS
options: {
// Whitelist specific selectors by name
// safelist: [],
},
},
};