myworkoutcompanion.net - Dark Mode

Dark theme for MyWorkoutCompanion

当前为 2025-01-01 提交的版本,查看 最新版本

  1. /* ==UserStyle==
  2. @name myworkoutcompanion.net - Dark Mode
  3. @namespace typpi.online
  4. @version 1.0.1
  5. @description Dark theme for MyWorkoutCompanion
  6. @author Nick2bad4u
  7. @license UnLicense
  8. @homepageURL https://github.com/Nick2bad4u/UserStyles
  9. ==/UserStyle== */
  10. @-moz-document domain("myworkoutcompanion.net") {
  11. /* Invert colors except images and videos */
  12. :is(
  13. html:not([stylus-iframe]),
  14. img,
  15. svg,
  16. video
  17. ) {
  18. filter: invert(1) hue-rotate(180deg) !important;
  19. }
  20.  
  21. option {
  22. background: black;
  23. color: white;
  24. }
  25.  
  26. .custom-select:focus,
  27. .form-control:focus {
  28. outline: 0;
  29. box-shadow: 0 0 0 0.2rem rgb(124 57 0 / 25%);
  30. border-color: #7c3900;
  31. }
  32.  
  33. .fc .fc-button-primary,
  34. .fc .fc-button {
  35. opacity: 100% !important;
  36. border-color: white !important;
  37. background-color: darkgray !important;
  38. color: #7c3900 !important;
  39. }
  40.  
  41. .fc-direction-ltr
  42. .fc-daygrid-event.fc-event-end,
  43. .fc-direction-rtl
  44. .fc-daygrid-event.fc-event-start {
  45. background-color: #7c3900 !important;
  46. }
  47. }