tailwind.config.js 661 B

123456789101112131415161718192021222324
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ["./**/*.{html,php}"],
  4. theme: {
  5. extend: {
  6. colors: {
  7. gray: {
  8. '50': "#f8fafc",
  9. '100': "#f1f5f9",
  10. '200': "#e2e8f0",
  11. '300': "#cbd5e1",
  12. '400': "#94a3b8",
  13. '500': "#64748b",
  14. '600': "#475569",
  15. '700': "#334155",
  16. '800': "#1e293b",
  17. '900': "#0f172a",
  18. '950': "#020617",
  19. }
  20. }
  21. },
  22. },
  23. plugins: [],
  24. }