index.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. body {
  2. margin: 0;
  3. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  4. 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  5. sans-serif;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. background-color: var(--background-color);
  9. }
  10. /*
  11. code {
  12. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  13. monospace;
  14. } */
  15. html[data-theme='light']{
  16. --modal-color: #fafafa;
  17. --arrow-color: rgb(84, 132, 222);
  18. --background-color: #fafafa;
  19. --background-color-new-post: #fafafa;
  20. --background-color-header: rgb(206, 227, 255);
  21. --background-color-login: linear-gradient(
  22. 90deg,
  23. rgba(58, 100, 180, 1) 0%,
  24. rgba(92, 168, 221, 1) 51%,
  25. rgba(29, 253, 182, 1) 100%
  26. );
  27. --font-color:black;
  28. --font-color-hover:white;
  29. }
  30. html[data-theme='dark']{
  31. --modal-color: rgb(70, 87, 122);
  32. --background-color-new-post: #a6bce2;
  33. --arrow-color: rgb(34, 56, 98);
  34. --background-color-header: rgb(46, 55, 67);
  35. --background-color-login:linear-gradient(90deg, rgba(37,40,84,1) 0%, rgba(78,31,128,1) 42%, rgba(40,145,142,1) 100%);
  36. --background-color: #2b3e51;
  37. --font-color:white;
  38. --font-color-hover:black;
  39. }