tailwind.config.js 654 B

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