splatoon3.ink/tailwind.config.js
2022-08-30 18:25:41 -07:00

33 lines
658 B
JavaScript

const plugin = require("tailwindcss/plugin");
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: [
plugin(function({ addVariant }) {
addVariant('ss', 'body.for-screenshots &')
})
]
}