29 lines
555 B
JavaScript
29 lines
555 B
JavaScript
const defaultTheme = require('tailwindcss/defaultConfig');
|
|
|
|
module.exports = {
|
|
content: [
|
|
'./src/components/**/*.{ts,tsx,js,jsx}',
|
|
'./src/pages/**/*.{ts,tsx,js,jsx}',
|
|
'./src/pages/login.tsx'
|
|
],
|
|
theme: {
|
|
...defaultTheme,
|
|
colors: {
|
|
...defaultTheme.colors,
|
|
primary: "#71aaff",
|
|
white: '#ffffff',
|
|
text: {
|
|
DEFAULT: "#1F2937",
|
|
light: "#6C7281",
|
|
},
|
|
light: {
|
|
DEFAULT: "#FAFBFC",
|
|
lighter: "#F3F4F6",
|
|
},
|
|
},
|
|
extend: {},
|
|
},
|
|
variants: {},
|
|
plugins: [],
|
|
}
|