forked from sktlim/silverfun-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (39 loc) · 859 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
fontFamily: {
sans: ["Roboto", "Rubik"],
heading: ["RubikBold"],
},
extend: {
colors: {
primary: "#000000",
yellow: "#E1AD01",
black: "#000000",
red: {
700: "#EC5863", //main red
300: "#FBDEE0", //light red
},
blue: {
700: "#39619B", //main blue
300: "#DBE9FD", //light blue
100: "#F8FAFF", //pale blu-ish gray; bg
},
gray: {
900: "#555555", //gray for icon
600: "#616161", //words
200: "#F5F5F5", //dashboard search gray
}
},
flex: {
2: "2 2 0%",
3: "3 3 0%",
4: "4 4 0%",
},
},
},
plugins: [],
}