-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (35 loc) · 996 Bytes
/
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
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
experimental: {
optimizeUniversalDefaults: true,
},
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
"cuof-grey-01": "#FAFAFA",
"cuof-grey-02": "#666666",
"cuof-grey-03": "#413A43",
"menu-bg": "rgba(255, 255, 255, 0.8)",
},
backgroundImage: {
"cuof-gradient-h": "linear-gradient(90deg, #FFC83A 2.5%, #FF7C32 11.5%, #FF008C 43.5%)",
"cuof-gradient-v": "linear-gradient(180deg, #FFC83A 2.5%, #FF7C32 11.5%, #FF008C 43.5%)",
},
boxShadow: {
nav: "0px 2px 2px rgba(0, 0, 0, 0.1)",
menu: "0px 2px 2px rgba(0, 0, 0, 0.1)",
},
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
fontFamily: {
display: ["Fira Sans", "Noto Sans Thai", ...defaultTheme.fontFamily.sans],
},
},
plugins: [require("@tailwindcss/typography")],
}