-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
38 lines (37 loc) · 1.1 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
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./ui/**/*.{js,ts,jsx,tsx,mdx}", "./app/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
black: "#141414",
text: "var(--text)",
title: "var(--title)",
element: "var(--element)",
hoverElement: "#2e2e2e",
activeElement: "#333333",
placeholder: "#666",
border: "#525252",
accentViolet: "var(--accentViolet)",
hoverViolet: "var(--hoverViolet)",
accentGreen: "var(--accentGreen)",
hoverGreen: "var(--hoverGreen)",
accentBlue: "var(--accentBlue)",
hoverBlue: "var(--hoverBlue)",
accentRed: "rgb(var(--accentRed) / <alpha-value>)",
hoverRed: "var(--hoverRed)",
accentOrange: "var(--accentOrange)",
hoverOrange: "var(--hoverOrange)",
disabledOrange: "#a45c0a",
},
backgroundImage: {
"search-icon": "url('/search-icon.svg')",
},
gridTemplateColumns: {
main: "1fr min(900px, 55vw)",
},
},
},
plugins: [],
};
export default config;