-
Notifications
You must be signed in to change notification settings - Fork 508
/
tailwind.config.js
50 lines (49 loc) · 1.15 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
/* eslint-disable @typescript-eslint/no-var-requires */
const colors = require("tailwindcss/colors");
module.exports = {
important: true,
theme: {
extend: {
colors: {
green: colors.emerald,
yellow: colors.amber,
purple: colors.violet,
primary: {
100: "#def7ec",
200: "#bcf0da",
300: "#84e1bc",
400: "#31c48d",
500: "#0e9f6e",
600: "#057a55",
700: "#046c4e",
800: "#03543f",
900: "#014737",
},
gray: {
100: "#FBFAFC",
200: "#F7F5FA",
300: "#F1EDF7",
400: "#DFDAE8",
500: "#BFB8CC",
600: "#9187A1",
700: "#7D728F",
800: "#6A5F7A",
900: "#453C52",
},
},
padding: {
"1/5": "20%",
},
},
},
corePlugins: {
aspectRatio: false,
},
content: ["./src/**/*.{html,md,js,jsx,ts,tsx,res}"],
safelist: [{ pattern: /^(bg|text|border)-/, variants: ["hover"] }],
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("@tailwindcss/aspect-ratio"),
],
};