app.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* Your app custom styles here */
  2. @tailwind base;
  3. @tailwind components;
  4. @tailwind utilities;
  5. /* Invert navigation bars to fill style */
  6. :root,
  7. :root.dark,
  8. :root .dark {
  9. --f7-bars-bg-color: var(--f7-theme-color);
  10. --f7-bars-bg-color-rgb: var(--f7-theme-color-rgb);
  11. --f7-bars-translucent-opacity: 0.9;
  12. --f7-bars-text-color: #fff;
  13. --f7-bars-link-color: #fff;
  14. --f7-navbar-subtitle-text-color: rgba(255,255,255,0.85);
  15. --f7-bars-border-color: transparent;
  16. --f7-tabbar-link-active-color: #fff;
  17. --f7-tabbar-link-inactive-color: rgba(255,255,255,0.54);
  18. --f7-sheet-border-color: transparent;
  19. --f7-tabbar-link-active-border-color: #fff;
  20. }
  21. .appbar,
  22. .navbar,
  23. .toolbar,
  24. .subnavbar,
  25. .calendar-header,
  26. .calendar-footer {
  27. --f7-touch-ripple-color: var(--f7-touch-ripple-white);
  28. --f7-link-highlight-color: var(--f7-link-highlight-white);
  29. --f7-link-touch-ripple-color: var(--f7-touch-ripple-white);
  30. --f7-button-text-color: #fff;
  31. --f7-button-pressed-bg-color: rgba(255,255,255,0.1);
  32. }
  33. .navbar-large-transparent,
  34. .navbar-large.navbar-transparent {
  35. --f7-navbar-large-title-text-color: #000;
  36. --r: 0;
  37. --g: 122;
  38. --b: 255;
  39. --progress: var(--f7-navbar-large-collapse-progress);
  40. --f7-bars-link-color: rgb(
  41. calc(var(--r) + (255 - var(--r)) * var(--progress)),
  42. calc(var(--g) + (255 - var(--g)) * var(--progress)),
  43. calc(var(--b) + (255 - var(--b)) * var(--progress))
  44. );
  45. }
  46. .dark .navbar-large-transparent,
  47. .dark .navbar-large.navbar-transparent {
  48. --f7-navbar-large-title-text-color: #fff;
  49. }
  50. /* Your app custom styles here */