Archived
1
0
Fork 0
This repository has been archived on 2026-06-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
heritage-wow/tailwind.config.js

48 lines
914 B
JavaScript
Vendored

const colors = require('tailwindcss/colors')
module.exports = {
purge: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
'info': colors.blue,
'success': colors.green,
'warning': colors.amber,
'danger': colors.red,
'class-druid': '#FF7C0A',
'class-hunter': '#AAD372',
'class-mage': '#3FC7EB',
'class-paladin': '#F48CBA',
'class-priest': '#c9c9c9',
'class-rogue': '#FFF468',
'class-shaman': '#0070DD',
'class-warlock': '#8788EE',
'class-warrior': '#C69B6D',
},
},
scale: {
'0': '0',
'25': '.25',
'50': '.5',
'75': '.75',
'90': '.9',
'95': '.95',
'100': '1',
'105': '1.05',
'110': '1.1',
'125': '1.25',
'150': '1.5',
'175': '1.75',
'200': '2',
},
},
variants: {
extend: {},
},
plugins: [],
}