globals.css 595 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. * {
  2. box-sizing: border-box;
  3. }
  4. :root {
  5. --background: #000;
  6. --foreground: #fafafa;
  7. --card: #0a0a0a;
  8. --border: #262626;
  9. --muted: #a3a3a3;
  10. --radius: 8px;
  11. }
  12. html,
  13. body {
  14. margin: 0;
  15. padding: 0;
  16. font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  17. background-color: var(--background);
  18. color: var(--foreground);
  19. -webkit-font-smoothing: antialiased;
  20. }
  21. button {
  22. font-family: inherit;
  23. cursor: pointer;
  24. }
  25. input,
  26. select,
  27. textarea {
  28. font-family: inherit;
  29. }
  30. ::selection {
  31. background: var(--foreground);
  32. color: var(--background);
  33. }