Guest User

Untitled

a guest
Mar 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. /* Gist Embed - Dark Theme Styling - Thanks to MattD */
  2.  
  3. /* Body */
  4. .gist-data tbody { background-color: Black; }
  5.  
  6. /* Line Numbers */
  7. .gist-data tbody td:nth-of-type(1) {
  8. color: #2B91AF !important;
  9. }
  10.  
  11. /* Code */
  12. .gist-data tbody td:nth-of-type(2){
  13. color: #FFFFFF !important;
  14. }
  15.  
  16. /* Comments */
  17. .pl-c
  18. {
  19. color: #57A64A !important;
  20. }
  21.  
  22. /* Function */
  23. .pl-k, tbody tr:first-child .blob-code, tbody tr:last-child .blob-code
  24. {
  25. color: #569CD6 !important;
  26. }
  27.  
  28. /* Function Name */
  29. .pl-en
  30. {
  31. color: #FFFFFF !important;
  32. }
  33.  
  34. /* Function Method */
  35. .pl-c1
  36. {
  37. color: #FFFFFF !important;
  38. }
  39. /* "'s around Strings */
  40. .pl-pds
  41. {
  42. color: #D69D85 !important;
  43. }
  44.  
  45. /* Strings */
  46. .pl-s
  47. {
  48. color: #D69D85 !important;
  49. }
  50.  
  51. /* 2018 edits */
  52. .gist .gist-meta {
  53. background-color: #000000 !important;
  54. }
  55.  
  56. .gist .gist-data {
  57. background-color: #171616 !important;
  58. border-bottom: 1px solid #171616 !important;
  59. }
  60.  
  61. .gist .gist-file {
  62. border: 1px solid #171616 !important;
  63. border-bottom: 1px solid #191919 !important;
  64. }
  65.  
  66. .gist .blob-num {
  67. background: #000000 !important;
  68. }
  69.  
  70. .gist .blob-code {
  71. background: #000000 !important;
  72. }
  73.  
  74. .gist .highlight {
  75. background: #000000 !important;
  76. }
Add Comment
Please, Sign In to add comment