Delete tailwind.config.ts
Browse files- tailwind.config.ts +0 -31
tailwind.config.ts
DELETED
@@ -1,31 +0,0 @@
|
|
1 |
-
import type { Config } from "tailwindcss";
|
2 |
-
import colors from "tailwindcss/colors";
|
3 |
-
import defaultTheme from "tailwindcss/defaultTheme";
|
4 |
-
|
5 |
-
const config: Config = {
|
6 |
-
darkMode: "class",
|
7 |
-
content: [
|
8 |
-
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
9 |
-
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
10 |
-
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
11 |
-
],
|
12 |
-
theme: {
|
13 |
-
extend: {
|
14 |
-
colors: {
|
15 |
-
brand: "#E1E7EC",
|
16 |
-
gray: colors.slate,
|
17 |
-
},
|
18 |
-
backgroundColor: {
|
19 |
-
dark: "#0B1120",
|
20 |
-
},
|
21 |
-
backgroundImage: {
|
22 |
-
'dark-radial': 'radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%)',
|
23 |
-
},
|
24 |
-
fontFamily: {
|
25 |
-
sans: ['"Aeonik"', ...defaultTheme.fontFamily.sans],
|
26 |
-
},
|
27 |
-
},
|
28 |
-
},
|
29 |
-
};
|
30 |
-
|
31 |
-
export default config;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|