-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
54 lines (49 loc) · 1.29 KB
/
Copy pathtailwind.config.ts
File metadata and controls
54 lines (49 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
import type { Config } from "tailwindcss";
export default {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}", // Note the addition of the `app` directory.
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
"h-blue": "#14181C",
"b-blue": "#1E252C",
"l-white": "#99AABB",
"p-white": "#def",
// new theme
"navigation-bg": "#1e1f21",
"h-grey": "#91A0AF",
// bg dropdown menu
"drop-grey": "#89a",
//text dropdown menu
"drop-black": "#2c3440",
//dropdown hover color
"dd-blue": "#667788",
//used on hover links on homepage
"hov-blue": "#40bcf4",
//used on borders on homepage
"b-grey": "#456",
//subheadings in home
"sh-grey": "#9ab",
// poster border color
"pb-grey": "#def",
"si-black": "#14181c",
//input field
"input-bg": "#2c3440",
//card blue
"c-blue": "#202830",
//signout poster hover,
"p-green": "#00e054",
"b-green": "#00c030",
"b-h-green": "#00B020",
// cast bg color
"c-grey": "#283038",
"review-bg": "#0b1014",
},
extend: {},
},
plugins: [],
} satisfies Config;