mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-03-21 17:54:13 -05:00
33 lines
658 B
JavaScript
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 &')
|
|
})
|
|
]
|
|
}
|