forked from geeksblabla/awesome-morocco
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
39 lines (37 loc) Β· 861 Bytes
/
tailwind.config.ts
File metadata and controls
39 lines (37 loc) Β· 861 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
import { type Config } from "tailwindcss";
import { fontFamily } from "tailwindcss/defaultTheme";
export default {
content: ["./src/**/*.tsx"],
theme: {
extend: {
fontFamily: {
sans: ["Poppins", ...fontFamily.sans],
},
colors: {
primary: {
500: "#5D4AF6",
900: "#0C0B14",
},
secondary: {
500: "#CB3CAC1A",
},
neutral: {
10: "#FFFFFF",
25: "#F2F2F2",
50: "#e8e8e8",
75: "#d2d2d2",
100: "#b8b8b8",
200: "#969696",
300: "#666666",
400: "#484848",
500: "#323232",
600: "#181818",
700: "#121212",
800: "#0e0e0e",
900: "#070707",
},
},
},
},
plugins: [require("@tailwindcss/typography")],
} satisfies Config;