-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
tailwind.config.js
33 lines (31 loc) · 1.08 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
import trac from "tailwindcss-react-aria-components";
import contQueries from "@tailwindcss/container-queries";
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Inter", "system-ui"],
},
colors: {
primary:
"light-dark(oklch(49.12% 0.3096 285.75), oklch(65.69% 0.196 285.75))",
"primary-content":
"light-dark(oklch(0.89824 0.06192 285.75), oklch(0.13138 0.0392 285.75))",
secondary:
"light-dark(oklch(69.71% 0.329 342.55), oklch(74.8% 0.26 342.55))",
accent:
"light-dark(oklch(76.76% 0.184 183.61), oklch(74.51% 0.167 183.61))",
"base-content": "light-dark(#1f2937, #A6ADBB)",
"base-100": "light-dark(oklch(100% 0 0), #1d232a)",
"base-200": "light-dark(#F2F2F2, #191e24)",
"base-300": "light-dark(#E5E6E6, #15191e)",
},
},
fontFamily: {
keycap: ["Inter", "system-ui"],
},
},
plugins: [contQueries, trac({ prefix: "rac" })],
};