Vonavig93

Renshuu Dark Sakura (by ギョルギ九十三)

Oct 1st, 2025
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.79 KB | None | 0 0
  1. /*
  2.     Dark Sakura Theme
  3.     Based on Dark Mode, with overrides for buttons, highlights,
  4.     daily challenges, navbar, and background gradient. Also made the kao-coin showcase bigger.
  5. */
  6.  
  7. :root {
  8. --vocab: #9695D6;
  9. --b_primary: #6d2e55; /* this is for the Study buttons and stuff */
  10. --b_primary_border: #cd85b2ab;
  11. --b_border: #696969;
  12. --gold: #FFDD32;
  13. --silver: #CBCBCB;
  14. --bronze: #A68A7E;
  15. --navhover: #F7B76F;
  16. --darkstripe: #5d2648; /* changed, text */
  17. --sstriped: #848484;
  18. --red: #ff4f4f; /* changed to more muted*/
  19. --lred: #ff000061;
  20. --green: #9beb31; /* changed, text - to review terms number, etc. */
  21. --nav_bg: #1c1c1c;
  22. --quiz_submit: #5d2648;
  23. --quiz_bg: #2f3030; /* changed this */
  24. --orange_button: #d4a978; /* I don't know button */
  25.    
  26. --cw_border: #696969;
  27. --cw_bg: #000000;
  28. --text: #f2f2f2;
  29. --ntext: #000; /* actual inverse */
  30. --grey: #838282;
  31. --dgrey: #888888;
  32. --dorange: #EE7600;
  33. --tab_bg: #4a4a4a;
  34. --neg_text: #ffffff;
  35.  
  36. --alink: #9bb9e2; /* Changed this: link colour */
  37. --body_bg: #190110; /* body colour, make it dark */
  38. --wrapper_bd: #58405d; /* The border of the main wrapper */
  39. --bg_main: #1c1c1c; /* bg colour, make it dark-gray */
  40. --menu_bg: #3e3e3e;
  41. --warn_bg: #5f2020;
  42. --warn_icon_bg: #441a1a;
  43. --succ_bg: #2c420a;
  44.  
  45. --shighlight: #9beb31; /* changed, quiz words */
  46.  
  47.      /* adventure */
  48.  
  49. --progress_back: #953e73;
  50. --progress_bar: #c29bb3; /* changed this */
  51. --progress_border: #d884b8c9; /* changed this */
  52. --challenge_bg: #35012100; /* changed this */
  53. --level_circles: #ff3849;
  54. --progress_mborder: #65084100; /* changed this */
  55. }
  56.  
  57. .c_circle-bg {
  58.   stroke: #353535;
  59. }
  60.  
  61. .full_term .grey, .compact_term .grey, .print_term .grey {
  62.   color: #a5a5a5
  63. }
  64.  
  65. .sched_vocab {
  66.     fill: #ae317f; /* schedule icon for words */
  67. }
  68.  
  69. .sched_kanji {
  70.     fill: #8044df;
  71. }
  72.  
  73. .sched_sent
  74. {
  75.     fill: #d68844;
  76. }
  77.  
  78. .sched_grammar, .sched_conj, .sched_aconj
  79. {
  80.     fill: #cf5556;
  81. }
  82.  
  83. #adven_box { /* daily_C bg_image */
  84.     background-image: linear-gradient(rgb(0, 0, 0), rgba(19, 0, 10, .69)), url(https://www.renshuu.org/i.php?f=img/adventure/adventure_night.png&v=2) !important;
  85. }
  86.  
  87. #adven_box.desc
  88. {
  89.     background-image: linear-gradient(rgb(0, 0, 0), rgba(19, 0, 10, .69)), url(https://www.renshuu.org/i.php?f=img/adventure/adventure_night.png&v=2) !important;
  90. }
  91.  
  92. #navbar
  93. {
  94.     position: fixed;
  95.     top: 0;
  96.     width: 100%;
  97.     min-width: 766px;
  98.     font-size: 14px;
  99.     height: var(--navheight);
  100.     border-bottom: 1px solid #da8fc16e;
  101.     background: #5d2648;
  102.     z-index: 502;
  103. }
  104.  
  105. .tree_line.tochuu>div>div:nth-child(even), .tree_line.completed>div>div, .tree_box.completed .tree_circle {
  106.     border-color: #ffe2a2;
  107. }
  108.  
  109. .rightWrapper
  110.  {
  111.     position: relative;
  112.     border-radius: 7px;
  113.     padding: 1em;
  114.     background-color: #5d2648;
  115. }
  116.  
  117. html, body {
  118.   background: linear-gradient(
  119.     to bottom,
  120.     #181017 0%,
  121.     #2c212f 60%,
  122.     #1c1520 80%,
  123.     #0b0a0f 100%
  124.   ) no-repeat fixed;
  125.   background-size: cover;
  126. }
  127.  
  128. /* Kao-coin zoom tweak. I think this works without breaking anything... probably... */
  129. .kaocoin_grid {
  130.     max-height: 400px !important;
  131.     margin-bottom: 0 !important; /* remove extra space on top */
  132.     grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
  133.     row-gap: 2.9em;   /* space between rows */
  134. }
  135.  
  136. .kaocoin_grid > div {
  137.     transform: scale(1.3);       /* slightly larger */
  138.     transform-origin: top left;    /* keeps alignment neat */
  139.     padding-top: 0;
  140. }
  141.  
  142. .mnav_item:hover {
  143.     background-color: #5d2648;
  144. }
  145.  
  146. .correctbox
  147.  {
  148.     border: 1px solid #219d05 !important;
  149.     border-top-width: 2px !important;
  150. }
  151.  
  152. .wrongbox {
  153.     border: 1px solid #ff1e1e !important;
  154.     border-top-width: 2px !important;
  155. }
  156.  
  157. .fa-check-circle, .fa-arrow-circle-up, .qresult{
  158.     color: #9beb31 !important;
  159. }
Advertisement
Add Comment
Please, Sign In to add comment