tailwind.config.js 675 B

123456789101112131415161718192021222324252627282930
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. darkMode: 'class',
  4. content: [
  5. "./index.html",
  6. "./src/**/*.{js,ts,jsx,tsx}",
  7. ],
  8. theme: {
  9. extend: {
  10. colors: {
  11. // Bambu Lab color palette
  12. bambu: {
  13. green: '#00ae42',
  14. 'green-light': '#00c64d',
  15. 'green-dark': '#009438',
  16. dark: '#1a1a1a',
  17. 'dark-secondary': '#2d2d2d',
  18. 'dark-tertiary': '#3d3d3d',
  19. gray: '#808080',
  20. 'gray-light': '#a0a0a0',
  21. 'gray-dark': '#4a4a4a',
  22. }
  23. },
  24. fontFamily: {
  25. sans: ['Inter', 'system-ui', 'sans-serif'],
  26. },
  27. },
  28. },
  29. plugins: [],
  30. }