-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (43 loc) · 932 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (43 loc) · 932 Bytes
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
const colors = require("tailwindcss/colors");
/** @type {import('tailwindcss').Config} */
export default {
mode: "jit",
// purge: ["./src/**/*.{js,ts,jsx,tsx}", "./public/index.html"],
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
brass: {
300: "#DDBF7A",
400: "#d69f54",
500: "#D29542",
},
green: {
100: "#ecfdf5",
400: "#d8f8ed",
500: "#8cbcac",
600: "#649d8c",
700: "#487e6f",
800: "#3a675b",
900: "#425c5a",
},
airquality: {
good: "#82c07b",
fair: "#a0b356",
moderate: "#bfa13b",
poor: "#dd8938",
verypoor: "#fb5d5e",
},
white: colors.white,
black: colors.black,
blue: "#2196f3",
},
extend: {
boxShadow: {
standard: "rgb(38, 57, 77) 0px 20px 30px -10px",
},
},
},
plugins: [require("@achamaro/tailwindcss-iconify-icon")()],
};