-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (41 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
},
extend: {
colors: {
primaryBlue: {
100: "#5b91ff",
500: "#0052ff",
600: "#0040c4",
},
Green: {
100: "#a0ffe7",
500: "#12cdd4",
900: "#259fa8",
},
Gray: {
100: "#f1f1f1",
300: "#f0f0f0",
500: "#e6e6e6",
900: "#c4c4c4",
},
brightRed: "hsl(12, 88%, 59%)",
brightRedLight: "hsl(12, 88%, 69%)",
brightRedSupLight: "hsl(12, 88%, 95%)",
darkBlue: "hsl(228, 39%, 23%)",
darkGrayishBlue: "hsl(227, 12%, 61%)",
veryDarkBlue: "hsl(233, 12%, 13%)",
veryPaleRed: "hsl(13, 100%, 96%)",
veryLightGray: "hsl(0, 0%, 98%)",
},
},
},
plugins: [require("tw-elements/dist/plugin")],
}