splatoon3.ink/tailwind.config.js
2022-04-23 18:08:39 -07:00

22 lines
375 B
JavaScript

module.exports = {
content: [
'./index.html',
'./src/**/*.{vue,js}',
],
theme: {
extend: {
colors: {
splatoon: {
yellow: '#eefe65',
blue: '#5b3df5',
},
},
fontFamily: {
splatoon1: ['Splatoon1', 'sans-serif'],
splatoon2: ['Splatoon2', 'sans-serif'],
},
},
},
plugins: [],
}