18 lines
433 B
JavaScript
18 lines
433 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
content: ['./components/**/*.{vue,js}', './pages/**/*.vue', './app.vue'],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
primary: 'rgb(48 121 255)',
|
||
|
|
ink: 'rgb(64 64 64)',
|
||
|
|
muted: 'rgb(153 153 153)'
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
sans: ['Source Han Sans', 'PingFang SC', 'Microsoft YaHei', 'Arial', 'sans-serif']
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
plugins: []
|
||
|
|
}
|