tailwind.config.js 349 B

123456789101112131415161718
  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. '3': "#333333",
  12. '6': "#666666",
  13. '9': "#999999",
  14. },
  15. },
  16. },
  17. plugins: [],
  18. };