gitcraft 0.1.123

A template project for GitHub-related utilities.
/**
 * 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.
 */

/* You can override the default Infima variables here. */

/* Developer-friendly color palette using modern green shades */
:root {
  /* Primary green - excellent for code and developer tools */
  --ifm-color-primary: #22c55e;
  --ifm-color-primary-dark: #16a34a;
  --ifm-color-primary-darker: #15803d;
  --ifm-color-primary-darkest: #14532d;
  --ifm-color-primary-light: #4ade80;
  --ifm-color-primary-lighter: #86efac;
  --ifm-color-primary-lightest: #bbf7d0;
  --ifm-code-font-size: 95%;
  --docusaurus-highlighted-code-line-bg: rgba(34, 197, 94, 0.1);
}

/* Dark theme with adjusted green palette for better contrast */
[data-theme='dark'] {
  --ifm-color-primary: #4ade80;
  --ifm-color-primary-dark: #22c55e;
  --ifm-color-primary-darker: #16a34a;
  --ifm-color-primary-darkest: #15803d;
  --ifm-color-primary-light: #86efac;
  --ifm-color-primary-lighter: #bbf7d0;
  --ifm-color-primary-lightest: #dcfce7;
  --docusaurus-highlighted-code-line-bg: rgba(74, 222, 128, 0.15);
}