28 lines
568 B
JavaScript
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: [],
|
|
} |