initial commit
This commit is contained in:
commit
1e1aa7d461
215 changed files with 35140 additions and 0 deletions
33
tailwind.config.js
vendored
Normal file
33
tailwind.config.js
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
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,
|
||||
'error': 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',
|
||||
},
|
||||
},
|
||||
},
|
||||
variants: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue