-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (42 loc) · 967 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
darkMode: "class",
content: ["./src/**/*.{html,js,jsx,ts,tsx}", "./public/index.html"],
theme: {
extend: {
fontFamily: {
sans: ["Poppins, sans-serif"],
},
colors: {
layer: {
light: {
50: "#ffffff",
100: "#ebebeb",
200: "#d6d6d6",
300: "#c2c2c2",
400: "#adadad",
500: "#999999",
600: "#858585",
700: "#707070",
800: "#5c5c5c",
900: "#474747",
},
dark: {
50: "#b8b8b8",
100: "#a3a3a3",
200: "#8f8f8f",
300: "#7a7a7a",
400: "#666666",
500: "#525252",
600: "#3d3d3d",
700: "#292929",
800: "#141414",
900: "#000000",
},
},
},
},
},
plugins: [],
};