-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
34 lines (34 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{html,js,ts,tsx,jsx}', // Adjust the path to your source folder
'./src/components/**/*.{html,js,ts,tsx,jsx}', // If you have a components directory
'./src/pages/**/*.{html,js,ts,tsx,jsx}', // If using a Next.js or similar setup
],
theme: {
extend: {
fontFamily: {
'archivoBlack': ['ArchivoBlack', "Arial", "sans-serif"],
'comfortaa': ['Comfortaa', "Arial", "sans-serif"],
'rubikDoodle': ['RubikDoodle', "Arial", "sans-serif"],
'teko': ['Teko', "Arial", "sans-serif"],
'sunsetTrees': ['SunsetTrees', "Arial", "sans-serif"],
},
colors: {
charcoalGray: '#2C2C2C', // Primary background color
deepBlue: '#1F3C88', // Headers, navigation, and buttons
warmGold: '#F2C14E', // Highlights and important text
softWhite: '#F5F5F5', // Backgrounds and text areas
mintGreen: '#81C784', // Call-to-action and hover effects
mintGreenLight: '#8daca2',
}
},
screens: {
sm: '480px', // Mobile
md: '768px', // Tablets
lg: '1024px', // Desktop
},
},
plugins: [],
}