-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (41 loc) · 930 Bytes
/
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
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
transparent: "transparent",
current: "currentColor",
primary: {
DEFAULT: "#7E5FA0",
dark: "#303146",
light: "#987FB3",
alt: "#3a3c55",
},
secondary: "#81A05F",
tricary: "#5FA07E",
// dark-text: "#102a43",
// light-text: "#1A446C",
// text-base: "rgb(55, 53, 47)",
// text-gray: "#4B4B4B"
// text-light-gray: "#696969",
// text-gray-dark: "#4F4F4F",
// text-black: "#201F1B",
// background: #303146;
white: "#FEFEFE",
text: {
black: "rgb(10, 12, 16)",
},
},
},
},
extend: {
fontFamily: {
sans: ["wotfard"],
},
},
variants: {
extend: {},
},
plugins: [],
};