[docs.unity3d & local] Unity Black - a dark theme with JS/C# syntax highlighting css

for use with [docs.unity3d & local] Unity Black - css style

  1. /* ==UserStyle==
  2. @name [docs.unity3d & local] Unity Black - a dark theme with JS/C# syntax highlighting css
  3. @namespace https://greasyfork.org/en/users/10118-drhouse
  4. @version 1.0
  5. @description for use with [docs.unity3d & local] Unity Black - css style
  6. @author drhouse
  7. @icon http://docs.unity3d.com/StaticFiles/images/favicons/favicon.ico
  8. ==/UserStyle== */
  9.  
  10. html {
  11. background-color: #1A1B1C !important;
  12. }
  13.  
  14. div {
  15. &.content {
  16. background-color: #27292C !important;
  17. }
  18. }
  19.  
  20. h1, h2, p, span, a {
  21. color: #fff !important;
  22. }
  23.  
  24. a {
  25. &:link {
  26. color: #fff!important;
  27. }
  28. }
  29.  
  30. td {
  31. border-style: ridge;
  32. border-width: 2px !important;
  33. border-color: #fff!important;
  34. color: #fff!important;
  35. background-color: #44474D !important;
  36. &.desc {
  37. border-width: 2px !important;
  38. border-color: #fff!important;
  39. color: #CACCD0!important;
  40. background-color: #414449!important;
  41. }
  42. }
  43.  
  44. table {
  45. &.list {
  46. tr {
  47. &:hover {
  48. outline: #009393 2px solid !important;
  49. }
  50. &:nth-child(odd) {
  51. background: #222222;
  52. }
  53. }
  54. }
  55. }