custom.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /**
  2. * Any CSS included here will be global. The classic template
  3. * bundles Infima by default. Infima is a CSS framework designed to
  4. * work well for content-centric websites.
  5. */
  6. @tailwind base;
  7. @tailwind components;
  8. @tailwind utilities;
  9. @import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
  10. @import url('https://fonts.googleapis.com/css2?family=Snowburst+One&display=swap');
  11. html,
  12. button {
  13. font-family: 'Overpass', sans-serif;
  14. }
  15. /* You can override the default Infima variables here. */
  16. :root {
  17. --ifm-color-primary: #4250af;
  18. --ifm-color-primary-dark: #4250af;
  19. --ifm-color-primary-darker: 4250af;
  20. --ifm-color-primary-darkest: 4250af;
  21. --ifm-color-primary-light: #4250af;
  22. --ifm-color-primary-lighter: #4250af;
  23. --ifm-color-primary-lightest: #4250af;
  24. --ifm-code-font-size: 95%;
  25. --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
  26. }
  27. /* For readability concerns, you should choose a lighter palette in dark mode. */
  28. [data-theme='dark'] {
  29. --ifm-color-primary: #adcbfa;
  30. --ifm-color-primary-dark: #85b2f8;
  31. --ifm-color-primary-darker: #71a5f6;
  32. --ifm-color-primary-darkest: #357ff3;
  33. --ifm-color-primary-light: #d5e4fc;
  34. --ifm-color-primary-lighter: #e9f1fe;
  35. --ifm-color-primary-lightest: #ffffff;
  36. --ifm-background-color: #000000;
  37. --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
  38. }
  39. .navbar__brand .navbar__title {
  40. @apply font-immich-title text-2xl font-normal text-immich-primary dark:text-immich-dark-primary;
  41. }