The Nuxt 3 rework of my website!
https://wubzy.xyz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
389 B
21 lines
389 B
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
corePlugins: {
|
|
//preflight: false
|
|
},
|
|
content: [],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
mont: 'Montserrat, sans-serif',
|
|
nun: 'Nunito, sans-serif'
|
|
},
|
|
colors: {
|
|
'w-blue': '#b0f6ff',
|
|
'w-purple': '#a172a6',
|
|
'w-pink': '#f3b5d3'
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |