-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (52 loc) · 1.21 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
const colors = require("tailwindcss/colors");
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
media: false, // or 'media' or 'class'
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
red: colors.red,
blue: colors.blue,
green: colors.emerald,
yellow: colors.yellow,
black: colors.black,
white: colors.white,
slate: colors.slate,
amber: colors.amber,
fuchsia: colors.fuchsia,
indigo: colors.indigo,
purple: colors.purple,
pink: colors.pink,
sky: colors.sky,
teal: colors.teal,
fernGreen: {
DEFAULT: "#4F7942",
50: "#C9DEC3",
100: "#BAD5B2",
200: "#9DC391",
300: "#7FB170",
400: "#659A54",
500: "#4F7942",
600: "#395830",
700: "#24371E",
800: "#0E160C",
900: "#000000",
},
aozora: {
DEFAULT: "#50b8e7",
50: "#edf7fc",
100: "#cae9f7",
200: "#dcf0fa",
300: "#b9e2f5",
400: "#84cdee",
500: "#50b8e7",
600: "#48a5cf",
700: "#3880a1",
800: "#285c73",
900: "#10242e",
},
},
},
};