mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-03-21 17:54:13 -05:00
22 lines
375 B
JavaScript
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: [],
|
|
}
|