-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (42 loc) · 963 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
43
/** @type {import('tailwindcss').Config} */
const { fontFamily } = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: "#fff4db",
100: "#ffe2ad",
200: "#fece7e",
300: "#fdbb4d",
400: "#fca71c",
500: "#e38e03",
600: "#b06e00",
700: "#7f4f00",
800: "#4d2e00",
900: "#1d0f00",
},
gray: {
0: "#ffffff",
100: "#fafafa",
200: "#eaeaea",
300: "#999999",
400: "#888888",
500: "#666666",
600: "#444444",
700: "#333333",
800: "#222222",
900: "#111111",
},
},
fontFamily: {
sans: ["IBM Plex Sans", ...fontFamily.sans],
},
},
},
plugins: [],
};