black.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /**
  2. * 边线 搭配色、次主色、主色
  3. */
  4. .border-color-main-pair {
  5. border-color: #009688 !important;
  6. }
  7. .border-color-main-light {
  8. border-color: #dcdcdc !important;
  9. }
  10. .border-color-main {
  11. border-color: #333333 !important;
  12. }
  13. /**
  14. * 边框 搭配色、次主色、主色
  15. */
  16. .br-main-pair {
  17. border: 1px solid #009688 !important;
  18. }
  19. .br-main-light {
  20. border: solid 1px #dcdcdc !important;
  21. }
  22. .br-main {
  23. border: 1px solid #333333 !important;
  24. }
  25. /**
  26. * 虚线边框 搭配色、次主色、主色
  27. */
  28. .br-dashed-main-pair {
  29. border: dashed 1px #009688 !important;
  30. }
  31. .br-dashed-main-light {
  32. border: dashed 1px #dcdcdc !important;
  33. }
  34. .br-dashed-main {
  35. border: dashed 1px #333333 !important;
  36. }
  37. /**
  38. * 文本颜色 搭配色、次主色、主色
  39. */
  40. .cr-main-pair {
  41. color: #009688 !important;
  42. }
  43. .cr-main-light {
  44. color: #dcdcdc !important;
  45. }
  46. .cr-main {
  47. color: #333333 !important;
  48. }
  49. /**
  50. * 背景色 搭配色、次主色、主色
  51. */
  52. .bg-main-pair {
  53. background-color: #009688 !important;
  54. }
  55. .bg-main-light {
  56. background-color: #dcdcdc !important;
  57. }
  58. .bg-main {
  59. background-color: #333333 !important;
  60. }
  61. button[disabled].bg-main-pair {
  62. background-color: #bdece8 !important;
  63. color: #edfbf9 !important;
  64. }
  65. button[disabled].bg-main-light {
  66. background-color: #efefef !important;
  67. color: #b7b7b7 !important;
  68. }
  69. button[disabled].bg-main {
  70. background-color: #c7c7c7 !important;
  71. color: #e2e2e2 !important;
  72. }