dark.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. .theme-dark {
  2. background-color: #0D0E10;
  3. }
  4. .theme-dark .center {
  5. background-color: #16181C;
  6. border-right: 1px solid #0D0E10;
  7. }
  8. .theme-dark .right {
  9. background-color: #16181C;
  10. }
  11. .theme-dark .minimized .titlebar {
  12. background-color: #16181C !important;
  13. color: #CDD1D5 !important;
  14. border-top: 1px solid #0D0E10 !important;
  15. }
  16. .theme-dark .MessageList .Message {
  17. background-color: #16181C;
  18. border-top: 1px solid #0D0E10;
  19. }
  20. .theme-dark .MessageList .Message:hover {
  21. background-color: #252627;
  22. }
  23. .theme-dark .MessageList .Message.active, .theme-dark .MessageList .Message.selected {
  24. background-color: #2E3031 !important;
  25. border-bottom: 1px solid #0D0E10 !important;
  26. border-top: 1px solid #0D0E10 !important;
  27. }
  28. .theme-dark .MessageShow .Message .tools .icon {
  29. filter: invert(100%);
  30. opacity: 0.5;
  31. }
  32. .theme-dark .MessageShow .Message .body {
  33. color: #E1E1E1;
  34. }
  35. .theme-dark .MessageShow .body pre, .theme-dark .MessageShow .body code {
  36. background-color: #0D0E10;
  37. border-color: #0A0A0A;
  38. color: #D3D3D3;
  39. }
  40. .theme-dark .empty {
  41. color: #747474 !important;
  42. }
  43. .theme-dark .subject {
  44. color: #E1E1E1 !important;
  45. background-color: transparent;
  46. }
  47. .theme-dark .from, .theme-dark .to {
  48. color: #C0C0C0 !important;
  49. background-color: transparent;
  50. }
  51. .theme-dark .preview {
  52. color: #A3A3A3 !important;
  53. }
  54. .theme-dark a {
  55. color: #83EFFF;
  56. }
  57. .theme-dark .StartScreen .term {
  58. color: white;
  59. }
  60. .theme-dark .button-submit {
  61. color: #333333;
  62. }
  63. .theme-dark .MessageCreate {
  64. -webkit-box-shadow: 0px -11px 50px -6px #303030;
  65. -moz-box-shadow: 0px -11px 50px -6px #303030;
  66. -o-box-shadow: 0px -11px 50px -6px #303030;
  67. -ms-box-shadow: 0px -11px 50px -6px #303030;
  68. box-shadow: 0px -11px 50px -6px #303030;
  69. background-color: #16181C;
  70. }
  71. .theme-dark .MessageCreate .label-to {
  72. color: #C0C0C0;
  73. }
  74. .theme-dark .MessageCreate textarea {
  75. color: #E1E1E1;
  76. background-color: transparent;
  77. }
  78. .theme-dark .MessageCreate input, .theme-dark .MessageCreate textarea {
  79. border-bottom: 1px solid #484848;
  80. }
  81. .theme-dark .MessageCreate input:focus, .theme-dark .MessageCreate textarea:focus {
  82. border-color: #6B6B6B;
  83. -webkit-transition: none;
  84. -moz-transition: none;
  85. -o-transition: none;
  86. -ms-transition: none;
  87. transition: none;
  88. }