-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
64 lines (64 loc) · 1.28 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
fontFamily: {
display: ["Montserrat", "sans-serif"],
body: ['"Open Sans"', "sans-serif"],
},
colors: {
transparent: "transparent",
current: "currentColor",
purple: {
DEFAULT: "#4F22D7",
50: "#F8F6FF",
100: "#EEEBFF",
300: "#CFBFFF",
500: "#B39AFF",
600: "#7355ED",
700: "#4F22D7",
900: "#361A8C",
},
grey: {
100: "#F4F7FA",
300: "#D3DAE0",
500: "#8A95A0",
700: "#4F5763",
},
blue: {
100: "#E9F2FF",
500: "#0B4EC7",
700: "#0E2A87",
},
green: {
100: "#E4F4E0",
500: "#368704",
700: "#1D5701",
},
orange: {
100: "#FFF0CD",
500: "#DA7C00",
700: "#7A2D00",
},
red: {
100: "#FFE3E3",
500: "#C70000",
700: "#940000",
},
yellow: {
100: "#FFF6C6",
500: "#FFD601",
700: "#665606",
},
navy: "#00214D",
white: "#FFFFFF",
black: {
DEFAULT: "#0F1218",
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: ["light"],
},
};