gemini-chat

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

globals.css (608B)


      1 :root {
      2   --background: #ffffff;
      3   --foreground: #171717;
      4 }
      5 
      6 @media (prefers-color-scheme: dark) {
      7   :root {
      8     --background: #0a0a0a;
      9     --foreground: #ededed;
     10   }
     11 }
     12 
     13 html,
     14 body {
     15   max-width: 100vw;
     16   overflow-x: hidden;
     17 }
     18 
     19 body {
     20   color: var(--foreground);
     21   background: var(--background);
     22   font-family: Arial, Helvetica, sans-serif;
     23   -webkit-font-smoothing: antialiased;
     24   -moz-osx-font-smoothing: grayscale;
     25 }
     26 
     27 * {
     28   box-sizing: border-box;
     29   padding: 0;
     30   margin: 0;
     31 }
     32 
     33 a {
     34   color: inherit;
     35   text-decoration: none;
     36 }
     37 
     38 @media (prefers-color-scheme: dark) {
     39   html {
     40     color-scheme: dark;
     41   }
     42 }