-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
45 lines (44 loc) · 1.11 KB
/
tailwind.config.ts
File metadata and controls
45 lines (44 loc) · 1.11 KB
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 ReactAriaPlugin from "tailwindcss-react-aria-components";
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: {
extend: {
fontFamily: {
sans: ["var(--font-poppins)"],
},
textColor: {
DEFAULT: "#1E1E1E",
},
borderColor: {
DEFAULT: "#DCDCDC",
},
colors: {
primary: "rgb(var(--brand-primary) / <alpha-value>)", // '#305140',
secondary: "rgb(var(--brand-secondary) / <alpha-value>)", // '#C3E0EE',
banner: "rgb(var(--brand-banner) / <alpha-value>)",
mauve: "#75425E",
gray: {
100: "#FAF9F5", // gray
200: "#F1F1F1", // light gray
300: "#E5E5E5",
350: "#DCDCDC",
400: "#8E8E8E", // dark gray
700: "#6C6C6C", // dark gray 2
},
white: "#FFFFFF",
},
},
},
plugins: [
ReactAriaPlugin,
],
corePlugins: {
preflight: false,
},
};
export default config;