| 12345678910111213141516 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: ['./public/index.html', './src/**/*.{html,js,ts,jsx,tsx,vue}'],
- darkMode: 'class',
- theme: {
- extend: {
- colors: {
- primary: '#58C6EA',
- },
- },
- },
- plugins: [],
- corePlugins: {
- preflight: false,
- },
- };
|