common.css 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. :root{
  2. --festive-color:#f00;
  3. --funeral-color:#1212;
  4. --red:#122;
  5. --green:#122;
  6. --blue:#122;
  7. --black:#122;
  8. --white:#122;
  9. --gray:#122;
  10. --yellow:#122;
  11. --purple:#122;
  12. --pink:#122;
  13. --orange:#122;
  14. --brown:#122;
  15. --cyan:#122;
  16. --magenta:#122;
  17. --C:#122;
  18. --M:#122;
  19. --Y:#122;
  20. --K:#122;
  21. --body-background-color:rgba(53, 139, 225, 0.333);
  22. --background-color:rgba(53, 139, 225, 0.333);
  23. --backdrop-color:rgba(94, 164, 235, 0.3);
  24. --font-color:rgb(91, 158, 91);
  25. --font-shadow-color:rgb(91, 158, 91);
  26. --filter-color:rgb(91, 158, 91);
  27. --filter-shadow-color:rgb(91, 158, 91);
  28. --hover-color:rgba(71, 220, 71, 0.133);
  29. --a-color:rgba(71, 220, 71, 0.133);
  30. --a-link-color:rgba(71, 220, 71, 0.133);
  31. --a-hover-color:rgba(71, 220, 71, 0.133);
  32. --a-active-color:rgba(71, 220, 71, 0.133);
  33. --a-visited-color:rgba(71, 220, 71, 0.133);
  34. --normal-color:rgba(190, 243, 238, 0.133);
  35. --notice-color:rgba(88, 144, 235, 0.133);
  36. --warming-color:rgba(240, 218, 75, 0.133);
  37. --wrong-color:rgba(243, 31, 31, 0.133);
  38. --plate-size-default:98%;
  39. --font-size:12px;
  40. --font-default-size:12px;
  41. --font-family: cursive;
  42. --line-height: 30px;
  43. --default-font-family: cursive;
  44. --font-scale-font-size:24px;
  45. --font-scale-default-font-size:24px;
  46. --title-font-size:18px;
  47. --title-default-font-size:18px;
  48. --title-font-family: cursive;
  49. --title-default-font-family: cursive;
  50. --subhead-font-size:16px;
  51. --subhead-default-font-size:16px;
  52. --subhead-font-family: cursive;
  53. --subhead-default-font-family: cursive;
  54. --content-font-size:12px;
  55. --content-default-font-size:12px;
  56. --content-font-family: cursive;
  57. --content-default-font-family: cursive;
  58. --button-text-font-size:15px;
  59. --button-text-default-font-size:15px;
  60. --test-border:2px solid black;
  61. --test-border-hover:2px solid rgb(228, 20, 20);
  62. --production-border:2px solid black;
  63. }
  64. html[data-theme="light"]{
  65. --body-background-color:#DED8D4;
  66. --font-color:#121929;
  67. --a-color:#862930;
  68. --a-link-color:rgba(71, 220, 71, 0.133);
  69. --a-hover-color:rgba(71, 220, 71, 0.133);
  70. --a-active-color:#862930;
  71. --a-visited-color:#862930;
  72. }
  73. html[data-theme="dark"]{
  74. --body-background-color:#121929;
  75. --font-color:#DED8D4;
  76. --a-color:#DED8D4;
  77. --a-link-color:#862930;
  78. --a-hover-color:#862930;
  79. --a-active-color:#DED8D4;
  80. --a-visited-color:#DED8D4;
  81. }
  82. body{
  83. background-color: var(--body-background-color);
  84. color: var(--font-color);
  85. }
  86. body a{
  87. color:var(--a-color);
  88. text-decoration: none;
  89. }
  90. body a:hover{
  91. color:var(--a-hover-color);
  92. }
  93. body a:visited{
  94. color:var(--a-visited-color);
  95. }