-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
43 lines (43 loc) · 1.48 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,tsx,astro}', './node_modules/tw-elements/dist/js/**/*.js'],
theme: {
extend: {
colors: {
'dark-green': '#03332b',
'light-gray': '#D2D2D2',
primary: {
orange: '#fc4c02',
green: '#80dfa6',
'dark-green': '#13322b',
white: '#fff'
},
secondary: {
'light-gray': '#F6F8FC',
aqua: '#d2f2f2',
cream: '#fdf1be',
rose: '#fec9b3',
'light-green': '#d9f5e4',
gray: '#868686',
teal: '#6ad2d2',
yellow: '#f9d026',
red: '#ff3400'
},
navbar: '#04332b'
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
poppins: ['Poppins', 'sans-serif']
},
backgroundImage: {
'card-gradient': 'linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))',
overview: 'url(/Header.png)',
gradient: 'linear-gradient(180.42deg, #FAAF25 0.36%, #FC4C02 52.07%, #FF3400 99.65%)',
learnMore: 'url(/bg-LearnMore.png)'
}
}
},
plugins: [
require('tw-elements/dist/plugin')
]
};