Files
motovaultpro/frontend/tailwind.config.js
Eric Gullickson d60c3ec00e MVP with new UX
2025-08-09 17:45:54 -05:00

28 lines
568 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#eff6ff',
500: '#7A212A',
600: '#7A212A',
700: '#9c2a36',
},
gray: {
850: '#18202f',
},
'moto-red': '#7A212A',
'moto-red-light': '#9c2a36',
},
backgroundImage: {
'gradient-moto': 'linear-gradient(90deg, #7A212A, #9c2a36)',
},
},
},
plugins: [],
}