Layout scaffolding for Web apps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
542 B

  1. const { tailwind } = require('@tesseract-design/viewfinder-base');
  2. /** @type {import('tailwindcss').Config} */
  3. module.exports = {
  4. content: [
  5. './src/**/*.tsx',
  6. './node_modules/@tesseract-design/viewfinder-react/dist/**/*.js',
  7. ],
  8. theme: {
  9. extend: {
  10. colors: {
  11. topbar: 'rgb(255 255 255)',
  12. sidebar: 'rgb(252 252 252)',
  13. 'sidebar-menu': 'rgb(248 248 248)',
  14. 'bg': 'rgb(var(--color-bg))',
  15. 'fg': 'rgb(var(--color-fg))',
  16. },
  17. },
  18. },
  19. plugins: [
  20. require('@tailwindcss/typography'),
  21. tailwind.plugin(),
  22. ],
  23. }