-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
61 lines (57 loc) · 1.38 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import type { Config } from "tailwindcss";
const { nextui } = require("@nextui-org/react");
export default {
content: [
"./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
mono: ["Fragment Mono", "monospace"],
sans: [
'"Inter"',
"ui-sans-serif",
"system-ui",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(calc(-100%))" },
},
},
animation: {
marquee: "marquee 3s linear infinite ",
},
colors: {
transparent: "transparent",
current: "currentColor",
black: "#121212",
gray: "#857885",
silver: "#B3B2AE",
darkgray: "#292929",
lightsilver: "#C1C1BA",
platinum: "#E9E9E6",
blue: "#1F7A8C",
lightblue: "#84B2B9",
hallon: "#CE2D4F",
orange: "#ffa400",
},
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1600px",
},
},
darkMode: "selector",
plugins: [nextui()],
} satisfies Config;