global.css 873 B

1234567891011121314151617181920212223242526272829303132
  1. @import 'tailwindcss';
  2. @import 'fumadocs-ui/css/neutral.css';
  3. @import 'fumadocs-ui/css/preset.css';
  4. /* 3x-ui brand: cyan / turquoise accent (matches the panel logo). */
  5. :root {
  6. --color-fd-primary: hsl(190, 95%, 39%);
  7. --color-fd-primary-foreground: hsl(0, 0%, 100%);
  8. --color-fd-ring: hsl(190, 95%, 39%);
  9. }
  10. .dark {
  11. --color-fd-primary: hsl(187, 90%, 55%);
  12. --color-fd-primary-foreground: hsl(190, 80%, 8%);
  13. --color-fd-ring: hsl(187, 90%, 55%);
  14. }
  15. /* Expose the brand color as Tailwind utilities (bg-brand, text-brand, ...). */
  16. @theme {
  17. --color-brand: hsl(190, 95%, 39%);
  18. --color-brand-foreground: hsl(0, 0%, 100%);
  19. }
  20. html {
  21. scrollbar-gutter: stable;
  22. }
  23. /* In RTL the scroll-lock padding must be applied to the logical inline-end. */
  24. html > body[data-scroll-locked] {
  25. margin-inline-end: 0px !important;
  26. --removed-body-scroll-bar-size: 0px !important;
  27. }