forked from titan-rocky/bitspaceorg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
41 lines (40 loc) · 855 Bytes
/
tailwind.config.ts
File metadata and controls
41 lines (40 loc) · 855 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
40
41
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
cream: "#FBFBF2",
pwhite: "#fff",
java: "#000",
white: "#F0F0F0",
accent: "#9482DA",
lpurple: "#E7E1FF",
black: "#001001",
nocl: "#00000000",
bsprime: "#191919",
blue: "#6287E7",
pink: "#E98AB8",
green: "#8AE9B0",
yellow: "#E9DF8A",
red: "#E98A8A",
},
fontFamily: {
filgen: "fligen",
migha: "migha",
"jet-uh": "jetbrains",
mono: "var(--mono-font)",
glb: "glacial",
},
extend: {
screens: {
ps: "375px",
},
},
},
plugins: [],
};
export default config;