16 lines
272 B
JavaScript
16 lines
272 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./src/**/*.{html,ejs,js}"],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
discord: {
|
||
|
default: "#5865F2",
|
||
|
active: "#8891f2",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|