index.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.theme-transition,
  16. html.theme-transition *,
  17. html.theme-transition *:before,
  18. html.theme-transition *:after {
  19. transition: all 750ms !important;
  20. transition-delay: 0 !important;
  21. }
  22. html[data-theme='light'] {
  23. --color-comments: rgb(74, 73, 73);
  24. --color-tooltip: #108ee9;
  25. --modal-color: #fafafa;
  26. --color-smile: #108ee9;
  27. --shadow: 0 5px 10px rgba(73, 80, 83, 0.25),
  28. 0 10px 5px rgba(191, 194, 196, 0.22);
  29. --arrow-color: rgb(68, 89, 129);
  30. --background-color: #fafafa;
  31. --background-color-new-post: #fafafa;
  32. --background-color-header: rgb(206, 227, 255);
  33. --background-color-login: linear-gradient(
  34. 90deg,
  35. rgba(58, 100, 180, 1) 0%,
  36. rgba(92, 168, 221, 1) 51%,
  37. rgba(29, 253, 182, 1) 100%
  38. );
  39. --font-color: black;
  40. --font-color-hover: white;
  41. --background-post: #edf8f8b9;
  42. --border-color-post: #fff;
  43. }
  44. html[data-theme='dark'] {
  45. --color-comments: rgb(228, 220, 220);
  46. --shadow: 0 5px 10px rgba(137, 151, 157, 0.111),
  47. 0 10px 5px rgba(87, 91, 94, 0.148);
  48. --modal-color: rgb(70, 87, 122);
  49. --color-tooltip: #aecbe1;
  50. --color-smile: #aecbe1;
  51. --background-color-new-post: #a6bce2;
  52. --arrow-color: rgb(196, 206, 226);
  53. --background-color-header: rgb(46, 55, 67);
  54. --background-color-login: linear-gradient(
  55. 90deg,
  56. rgba(37, 40, 84, 1) 0%,
  57. rgba(78, 31, 128, 1) 42%,
  58. rgba(40, 145, 142, 1) 100%
  59. );
  60. --background-color: #354d66;
  61. --font-color: white;
  62. --font-color-hover: black;
  63. --background-post: #90a6bdb9;
  64. --border-color-post: #233243;
  65. }