Aethel Bot OSS repository!
aethel.xyz
bot
fun
ai
discord
discord-bot
aethel
1/** @type {import('tailwindcss').Config} */
2export default {
3 content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
4 darkMode: 'class',
5 theme: {
6 extend: {
7 colors: {
8 discord: {
9 blurple: '#5865F2',
10 dark: '#2C2F33',
11 gray: '#99AAB5',
12 red: '#F04747',
13 },
14 primary: {
15 50: '#eef2ff',
16 100: '#e0e7ff',
17 500: '#5865F2',
18 600: '#4f46e5',
19 700: '#4338ca',
20 },
21 gray: {
22 50: '#f9fafb',
23 100: '#f3f4f6',
24 200: '#e5e7eb',
25 300: '#d1d5db',
26 400: '#9ca3af',
27 500: '#6b7280',
28 600: '#4b5563',
29 700: '#374151',
30 800: '#1f2937',
31 900: '#111827',
32 },
33 },
34 fontFamily: {
35 sans: ['Inter', 'system-ui', 'sans-serif'],
36 },
37 borderRadius: {
38 lg: '8px',
39 },
40 },
41 },
42 plugins: [],
43};