-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
40 lines (40 loc) · 1.04 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
34
35
36
37
38
39
40
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
light: '#c084fc', /* Light purple */
DEFAULT: '#a855f7', /* Medium purple */
dark: '#7e22ce', /* Dark purple */
},
secondary: {
light: '#7dd3fc', /* Light teal */
DEFAULT: '#38bdf8', /* Medium teal */
dark: '#0284c7', /* Dark teal */
},
background: {
light: '#312e81', /* Slightly lighter purple for contrast */
DEFAULT: '#1e1b4b', /* Dark purple background */
dark: '#0f172a', /* Very dark purple, almost black */
header: '#282A36',
},
icons: {
logoGradient: 'linear-gradient(135deg, #00b4d8, #48cae4, #90e0ef, #00ff87)',
},
button: {
primary: '#5C96A7',
hover: '#74A9B8',
},
},
fontFamily: {
club: ['Sarpanch'],
},
},
},
plugins: [],
}