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.
 
 
 
 
 

20 lines
346 B

  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [
  4. "./components/**/*.{js,vue,ts}",
  5. "./layouts/**/*.vue",
  6. "./pages/**/*.vue",
  7. "./plugins/**/*.{js,ts}",
  8. "./app.vue",
  9. "./error.vue",
  10. ],
  11. theme: {
  12. extend: {
  13. colors: {
  14. tmdbDarkBlue: '#272960',
  15. },
  16. },
  17. },
  18. plugins: [],
  19. }