-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (29 loc) · 1011 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
30 lines (29 loc) · 1011 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
slateBlack: '#33313B', // Used as base background color
deepPlum: '#62374E', // Used for creative/dsa sections
tealBlue: '#007880', // For highlights and buttons
goldenAmber: '#FDC57B', // CTA buttons and hover accents
charcoalBlack: '#1A1A1E', // True dark background
softSilver: '#E8ECEF', // Light contrast text on dark
emeraldGreen: '#2ECC71', // Success messages and highlights
crimsonRed: '#E63946', // Errors
softOrange: '#F4A261', // Warnings and alerts
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
heading: ['Poppins', 'sans-serif'],
},
},
},
plugins: [],
};