forked from iampavangandhi/TradeByte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (42 loc) · 898 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
42
43
const { colors } = require('tailwindcss/defaultTheme')
module.exports = {
purge: {
enabled: true,
content: ["./views/**/*.ejs"],
},
theme: {
extend: {
colors: {
blue: {
...colors.blue,
900: "#1955e4",
},
primary: "#FF6363",
secondary: {
100: "#E2E2D5",
200: "#888883",
},
// colors according to design 400->blue 200->red 500->green
tempc: {
100: "#365088",
200: "#E93434",
300: "#AAB8D0",
400: "#266FEA",
500: "#41D7AA",
600: "#236AE1",
700: "#879CC0",
800: "#CADAEC",
900: "#3DB197",
1000: "#D9FFF7",
1100: "#E5EDFB",
1200: "#F8FAFF",
},
},
fontFamily: {
body: ["Nunito"],
},
},
},
variants: {},
plugins: [],
};