You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
1.2KB

  1. /*
  2. An Old Hope – Star Wars Syntax (c) Gustavo Costa <gusbemacbe@gmail.com>
  3. Original theme - Ocean Dark Theme – by https://github.com/gavsiu
  4. Based on Jesse Leite's Atom syntax theme 'An Old Hope' – https://github.com/JesseLeite/an-old-hope-syntax-atom
  5. */
  6. /* Death Star Comment */
  7. .hljs-comment,
  8. .hljs-quote
  9. {
  10. color: #B6B18B;
  11. }
  12. /* Darth Vader */
  13. .hljs-variable,
  14. .hljs-template-variable,
  15. .hljs-tag,
  16. .hljs-name,
  17. .hljs-selector-id,
  18. .hljs-selector-class,
  19. .hljs-regexp,
  20. .hljs-deletion
  21. {
  22. color: #EB3C54;
  23. }
  24. /* Threepio */
  25. .hljs-number,
  26. .hljs-built_in,
  27. .hljs-builtin-name,
  28. .hljs-literal,
  29. .hljs-type,
  30. .hljs-params,
  31. .hljs-meta,
  32. .hljs-link
  33. {
  34. color: #E7CE56;
  35. }
  36. /* Luke Skywalker */
  37. .hljs-attribute
  38. {
  39. color: #EE7C2B;
  40. }
  41. /* Obi Wan Kenobi */
  42. .hljs-string,
  43. .hljs-symbol,
  44. .hljs-bullet,
  45. .hljs-addition
  46. {
  47. color: #4FB4D7;
  48. }
  49. /* Yoda */
  50. .hljs-title,
  51. .hljs-section
  52. {
  53. color: #78BB65;
  54. }
  55. /* Mace Windu */
  56. .hljs-keyword,
  57. .hljs-selector-tag
  58. {
  59. color: #B45EA4;
  60. }
  61. /* Millenium Falcon */
  62. .hljs
  63. {
  64. display: block;
  65. overflow-x: auto;
  66. background: #1C1D21;
  67. color: #c0c5ce;
  68. padding: 0.5em;
  69. }
  70. .hljs-emphasis
  71. {
  72. font-style: italic;
  73. }
  74. .hljs-strong
  75. {
  76. font-weight: bold;
  77. }