tailwind.config.js 277 B

123456789101112131415
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. corePlugins: {
  4. preflight: false,
  5. },
  6. content: ["./src/**/*.{html,js}", "./src/app/app.util.ts"],
  7. theme: {
  8. extend: {
  9. colors: {
  10. primary: "#1E5EFF",
  11. },
  12. },
  13. },
  14. plugins: [],
  15. };