-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (43 loc) · 1.14 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,jsx}"],
mode: "jit",
theme: {
extend: {
colors: {
"deep-blue": "#010026",
blue: "#2CBCE9",
red: "#DC4492",
yellow: "#FDCC49",
grey: "#ededed",
"dark-grey": "#757575",
"opaque-black": "rgba(0,0,0,0.35)",
},
backgroundImage: (theme) => ({
"gradient-rainbow":
"linear-gradient(81.66deg, #00B5EE 7.21%, #FF45A4 45.05%, #FFBA00 78.07%)",
"gradient-rainblue":
"linear-gradient(90deg, #24CBFF 14.53%, #FC59FF 69.36%, #FFBD0C 117.73%)",
}),
fontFamily: {
playfair: ["Playfair Display", "serif"],
opensans: ["Open Sans", "sans-serif"],
},
content: {
brush: "url('./assets/brush.png')",
nscc: "url('./assets/nscc-logo.jpg')",
codsoft: "url('./assets/codsoft.png')",
person3: "url('./assets/person-3.png')",
},
},
screens: {
xs: "480px",
ss: "620px",
sm: "768px",
md: "1060px",
lg: "1200px",
xl: "1700px",
},
},
plugins: [],
};