forked from Lebim01/beisbol-reactjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 796 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
35 lines (35 loc) · 796 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
chalk: ["Chalkduster"],
},
boxShadow: {
modal: "inset 0 0 8px 2px #f7b500", //! shadow color = tertiary color
},
colors: {
primary: {
DEFAULT: "#ab1217",
dark: "#ab1217",
light: "#ab1217",
text: "#ffffff",
},
secondary: {
DEFAULT: "#000000",
dark: "#000000",
light: "#000000",
text: "#ffffff",
},
tertiary: {
DEFAULT: "#f7b500",
dark: "#f7b500",
light: "#f7b500",
text: "#000000",
},
},
},
},
plugins: [],
};