-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
39 lines (39 loc) · 1.02 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
mode: "jit",
theme: {
extend: {
colors: {
blue: "#2CBCE9",
purple: "#8600e6",
"light-purple": "#A646EA",
red: "#DC4492",
yellow: "#f7be22",
grey: "#ededed",
"deep-blue": "#010026",
"navy-blue": "#000080",
"dark-grey": "#757575",
"orange": "#d68127",
"opaque-black": "rgba(0, 0, 0, 0.35)",
},
backgroundImage: (theme) => ({
"gradient-rainbow": "linear-gradient(81.66deg, #8600e6 7.21%, #f7be22 70.07%)",
"gradient-rainblue": "linear-gradient(81.66deg, #f7be22 10.21%, #8600e6 90.07%)",
}),
fontFamily: {
playfair: ["Playfair Display", "serif"],
opensans: ["Open Sans", "sans-#8600e6serif"],
},
content: {
brush: "url('/assets/svg/brush.svg')",
}
},
screens: {
xs: "480px",
sm: "768px",
md: "1060px",
},
},
plugins: [],
};