-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
34 lines (32 loc) · 960 Bytes
/
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
import type { Config } from "tailwindcss"
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: {
colors: {
"primary-900": "#055d57",
"primary-800": "#008080",
"primary-700": "#009497",
"primary-600": "#00a9af",
"primary-500": "#00b9c1",
"primary-400": "#26c3c7",
"primary-300": "#4dcecf",
"primary-200": "#80dddb",
"primary-100": "#b1eae8",
"primary-50": "#dff7f6",
"secondary-button-special": "#002727"
},
boxShadow: {
"container-glow-on-pattern": "0px 0px 192px 28px var(--primary-900)",
"container-glow-on-pattern-2": "0px 0px 480px 14px var(--primary-900)",
"menu-container-glow": "var(--shadow-menu-container-glow)"
}
},
},
plugins: [],
}
export default config