splatoon3.ink/tailwind.config.js
2022-08-28 13:07:14 -07:00

27 lines
515 B
JavaScript

module.exports = {
content: [
'./index.html',
'./src/**/*.{vue,js}',
],
theme: {
extend: {
colors: {
splatoon: {
blue: '#603bff',
purple: '#af50ff',
yellow: '#eaff3d',
green: '#6af7ce',
orange: '#ff9750',
red: '#ff505e',
brown: '#7f413f',
},
},
fontFamily: {
splatoon1: ['Splatoon1', 'sans-serif'],
splatoon2: ['Splatoon2', 'sans-serif'],
},
},
},
plugins: [],
}