-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
40 lines (40 loc) · 920 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
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
primary: {
400: "#BFBFBF",
500: "#CCCCCC",
600: "#D9D9D9",
700: "#E6E6E6",
800: "#F2F2F2",
900: "#FFFFFF",
},
secondary: {
400: "#474143",
500: "#433E40",
600: "#3F3A3C",
700: "#373335",
800: "#302C2E",
900: "#282426",
},
tertiary: {
// 400: "#B655F7",
// 500: "#AC3CF6",
// 600: "#A124F5",
700: "#970BF4",
800: "#880ADB",
900: "#7209B7",
},
},
fontFamily: {
Ubuntu: ["'Ubuntu'", "sans-serif"],
Quicksand: ["'Quicksand'", "sans-serif"],
Roboto: ["'Roboto'", "sans-serif"],
},
},
},
plugins: [],
};