Flomo@DK

for Flomoapp.com

  1. // ==UserScript==
  2. // @name Flomo@DK
  3. // @namespace https://dkpress.cn/
  4. // @version 1.31
  5. // @description for Flomoapp.com
  6. // @author DK
  7. // @match https://flomoapp.com/mine
  8. // @icon https://st.flomoapp.com/images/logo.png
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. addStyle();
  16. function addStyle() {
  17. let style = `
  18. body {
  19. background-color: #e3e6ed !important
  20. }
  21. .el-input__inner {
  22. background-color:#fff !important
  23. }
  24. div.input-box {
  25. border:1px solid #55bb8e !important
  26. }
  27. .heatgrid .day {
  28. background-color: #fefefe;
  29. }
  30. .heatgrid .day.light_green {
  31. border-color:#98cccc !important
  32. }
  33. .heatgrid .day.today {
  34. border-color:#55bb8e !important
  35. }
  36. ul {
  37. color:#666 !important
  38. }
  39. .sidebar_ul li:hover {
  40. background-color:#fff !important;
  41. color:#666 !important
  42. }
  43. ul li.tag > div:hover {
  44. background-color:#fff !important;
  45. color:#666 !important
  46. }
  47. .stat .datas .data .number {
  48. color:#666 !important
  49. }
  50. h3 {
  51. color:#555 !important
  52. }
  53. .allTags .allTags_header .allTags_title {
  54. color:#555 !important
  55. }
  56. div.content span.tag {
  57. color: #55bb8e !important;
  58. }
  59. div.content span.tag:hover {
  60. background-color:#55bb8e !important;
  61. color:#fff !important;
  62. }
  63. .recycle {
  64. color:#555 !important
  65. }
  66. div.content a {
  67. color: #55bb8e !important;
  68. }
  69. `;
  70. document.lastChild.appendChild(document.createElement('style')).textContent = style;
  71. }
  72.  
  73. })();