-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
49 lines (48 loc) · 1.02 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
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
media: false, // or 'media' or 'class'
theme: {
colors: {
"red-400": "#f87171",
"red-900": "#7f1d1d",
"orange-900": "#7c2d12",
"orange-400": "#fb923c",
white: "#fff",
gray: colors.gray,
red: colors.red,
green: colors.green,
blue: {
50: "#E7FAFE",
100: "#B6F7FF",
200: "#80E1F5",
300: "#51CEEC",
400: "#039AC2",
500: "#016788",
600: "#004973",
700: "#00376E",
800: "#031B41",
900: "#00000A",
},
yellow: {
50: "#FFF4B7",
100: "#FFED82",
200: "#FFE85B",
300: "#FFE440",
400: "#FEDD56",
500: "#E2AC66",
600: "#AE6731",
700: "#9D541D",
800: "#411304",
900: "#200C00",
},
},
extend: {},
},
variants: {
extend: {
zIndex: ["hover"],
},
},
plugins: [],
};