mirror of
https://github.com/BreizhHardware/sansdomainefixe.xyz.git
synced 2026-01-18 19:47:19 +01:00
18 lines
333 B
JavaScript
18 lines
333 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./*.{html,js,jsx,js,tsx,vue}", "./**/*.{html,js,jsx,js,tsx,vue}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'primary': '#260385',
|
|
'secondary': '#8e7cbf',
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
// ...
|
|
require('@tailwindcss/forms'),
|
|
],
|
|
}
|
|
|