-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
51 lines (49 loc) · 1.06 KB
/
tailwind.config.cjs
File metadata and controls
51 lines (49 loc) · 1.06 KB
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
const colors = require("tailwindcss/colors");
const config = {
mode: "jit",
purge: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
...colors,
primary: {
base: "#3fada8",
100: "#f4fbfb",
200: "#c3e9e7",
300: "#96d9d6",
400: "#66c7c2",
500: "#3faca6",
600: "#328a86",
700: "#266965",
800: "#1a4745",
900: "#0e2524",
},
sec: {
100: "#2A5776",
200: "#224660",
300: "#1A364A",
400: "#152D3E",
500: "#112533",
600: "#0D1D28",
700: "#09141D",
800: "#050C12",
850: "#06111A",
900: "#020203",
},
tert: {
100: "#EEF3F7",
200: "#CDDAE6",
300: "#ABC2D5",
400: "#9AB6CC",
500: "#8AA9C4",
600: "#799DBB",
700: "#6891B3",
800: "#5982A4",
900: "#497394",
},
},
},
},
plugins: [],
};
module.exports = config;