gs-port / tailwind.config.js
Scribbler310
feat: portfolio dashboard v1.0
dbc70ee
raw
history blame contribute delete
401 Bytes
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'gs-navy': '#0B233F',
'gs-slate': '#2C3E50',
'gs-gold': '#C5A880',
'gs-light': '#F8F9FA',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
}
},
},
plugins: [],
}