-
Notifications
You must be signed in to change notification settings - Fork 23
/
tailwind.config.js
56 lines (55 loc) · 1.25 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class", '[data-theme="dark"]'],
content: ["./src/**/*.{js,jsx,ts,tsx,svg}", "./docusaurus.config.js"],
theme: {
extend: {
colors: {
fontSize: {
"5xl": "2.5rem",
},
brand: {
900: "#332c05",
850: "#4d4107",
800: "#66570a",
700: "#b29911",
650: "#e6b600",
600: "#f0cd14",
500: "#ffda18",
400: "#ffe146",
300: "#ffe974",
200: "#fff0a3",
150: "#fff4ba",
100: "#fff8d1",
50: "#fffbe8",
},
gray: {
950: "#0D0E10",
900: "#1B1D20",
850: "#282B31",
800: "#353A41",
700: "#505661",
600: "#6A7382",
500: "#8590A2",
400: "#9DA6B5",
300: "#B6BCC7",
200: "#CED3DA",
150: "#DADEE3",
100: "#E7E9EC",
50: "#F9F9F9",
},
blue: {
950: "#0c192b",
900: "#14253D",
},
},
screens: {
xs: { max: "576px" },
},
},
fontFamily: {
sans: ['"DM Sans"', "system-ui"],
},
},
plugins: [require("@tailwindcss/typography")],
};