Files
fe09e69b-7320-451e-852e-b36…/tailwind.config.js
2026-01-23 12:19:46 +02:00

27 lines
744 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./public/index.html"
],
theme: {
extend: {
colors: {
'react-blue': '#087ea4',
'react-light-blue': '#58c4dc',
'react-dark': '#23272f',
'react-gray': '#6b7280',
'react-light-gray': '#f3f4f6',
'react-border': '#e5e7eb'
},
fontFamily: {
'sans': ['system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif']
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'meta-gradient': 'url("https://react.dev/images/meta-gradient.png")'
}
}
},
plugins: []
}