-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
37 lines (36 loc) · 875 Bytes
/
tailwind.config.cjs
File metadata and controls
37 lines (36 loc) · 875 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
screens: {
xs: "380px",
},
colors: {
black: "#191624",
},
textColor: {
lightGray: "#F1EFEE",
primary: "#FAFAFA",
secColor: "#efefef",
navColor: "#BEBEBE",
},
backgroundColor: {
mainColor: "#fefefe",
secondaryColor: "#F0F0F0",
blackOverlay: "rgba(0, 0 ,0 ,0.3)",
},
boxShadow: {
glow: "0 0 18px rgb(255, 0, 0, 0.7);",
glowLight: "0 0 24px rgb(255, 0, 0, 0.5)",
},
},
fontFamily: {
nunito: ["Nunito", "sans-serif"],
roboto: ["Roboto", "sans-serif"],
robotoCondensed: ["Roboto Condensed", "sans-serif"],
},
},
plugins: [],
};