tailwind.config.js 749 B

12345678910111213141516171819202122232425262728293031
  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. card: '#2d2d2d', // Same as dark-secondary for card backgrounds
  20. gray: '#808080',
  21. 'gray-light': '#a0a0a0',
  22. 'gray-dark': '#4a4a4a',
  23. }
  24. },
  25. fontFamily: {
  26. sans: ['Inter', 'system-ui', 'sans-serif'],
  27. },
  28. },
  29. },
  30. plugins: [],
  31. }