-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
45 lines (44 loc) · 1005 Bytes
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
import aspectRatio from "@tailwindcss/aspect-ratio";
import typography from "@tailwindcss/typography";
import css from "styled-jsx/css";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
white: "#ffffff",
black: "#000000",
primary: {
dark: "#d4d4d8",
light: "#52525b",
},
secondary: {
dark: "#a1a1aa",
light: "#71717a",
},
background: {
dark: "#18181b",
light: "#fafafa",
},
accent: {
light: "#17c964",
dark: "#45d483",
},
},
screens: {
xs: "375px",
...defaultTheme.screens,
},
},
corePlugins: {
aspectRatio: false,
},
plugins: [aspectRatio, typography()],
darkMode: "selector",
};
export default config;