| 12345678910111213141516171819202122 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: [
- './src/**/*.{js,ts,jsx,tsx,mdx}',
- ],
- theme: {
- extend: {
- colors: {
- brand: {
- bg: '#0B1020',
- card: '#121831',
- accent: {
- purple: '#7C5CFF',
- green: '#00E5A0',
- },
- text: '#E8ECF8',
- },
- },
- },
- },
- plugins: [],
- };
|