-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (35 loc) · 900 Bytes
/
tailwind.config.js
File metadata and controls
40 lines (35 loc) · 900 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
38
39
40
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily:{
nunito:"'Nunito', sans-serif",
ptSans:"'PT Sans',sans-serif"
},
colors: {
//white //
secondary:"#F6F5F5",
primary:"#F0F0F0",
primaryBase:"#FDFDFD",
// yellow
darkYellow: "#F9C202",
lightYellow:"#F9C718",
//blue
blue:"#162DA5",
// dark//
dark: "#050505",
darkBase:"#595959",
darkShade:"#262626",
darkPrimary:"#0d0d0d",
bgDark:"#1B1919",
blackShade:"#282525",
blackBase:"#423d3d",
primaryDark:"rgba(14, 14, 14, 0.85)",
overlay:"rgba(5, 5, 5, 0.73)",
overlayPrimary:"rgba(4,4,4,0.75)",
},
},
},
plugins: [],
};