-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (46 loc) · 976 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
44
45
46
47
48
/** @type {import('tailwindcss').Config} */
import { fontFamily } from "tailwindcss/defaultTheme";
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["ClashGrotesk", ...fontFamily.sans],
},
container: {
center: true,
padding: "2rem",
},
colors: {
gray: {
100: "#F2F2F2",
200: "#D9D9D9",
300: "#808080",
400: "#333333",
500: "#262626",
600: "#1A1A1A",
700: "#0D0D0D",
},
blue:{
dark:"#1E6F9F"
},
purple:{
dark:"#5E60CE"
}
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
dark: {
...require("daisyui/src/theming/themes")["dark"],
primary: "#4EA8DE",
secondary: "#8284FA",
error: "#E25858",
},
},
],
},
};