12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /**
- * Any CSS included here will be global. The classic template
- * bundles Infima by default. Infima is a CSS framework designed to
- * work well for content-centric websites.
- */
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
- @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');
- @import url('https://fonts.googleapis.com/css2?family=Snowburst+One&display=swap');
- html,
- button {
- font-family: 'Overpass', sans-serif;
- }
- /* You can override the default Infima variables here. */
- :root {
- --ifm-color-primary: #4250af;
- --ifm-color-primary-dark: #4250af;
- --ifm-color-primary-darker: 4250af;
- --ifm-color-primary-darkest: 4250af;
- --ifm-color-primary-light: #4250af;
- --ifm-color-primary-lighter: #4250af;
- --ifm-color-primary-lightest: #4250af;
- --ifm-code-font-size: 95%;
- --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
- }
- /* For readability concerns, you should choose a lighter palette in dark mode. */
- [data-theme='dark'] {
- --ifm-color-primary: #adcbfa;
- --ifm-color-primary-dark: #85b2f8;
- --ifm-color-primary-darker: #71a5f6;
- --ifm-color-primary-darkest: #357ff3;
- --ifm-color-primary-light: #d5e4fc;
- --ifm-color-primary-lighter: #e9f1fe;
- --ifm-color-primary-lightest: #ffffff;
- --ifm-background-color: #000000;
- --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
- }
- .navbar__brand .navbar__title {
- @apply font-immich-title text-2xl font-normal text-immich-primary dark:text-immich-dark-primary;
- }
|