Guest User

Untitled

a guest
Sep 23rd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. // Add this to the "editor.tokenColorCustomizations" setting if you want a few more semantic coloring to your haskell code displayed through the "Atom One Light theme"
  2. // This is inspired by the Vim "One" theme
  3. "[Atom One Light]": {
  4. "textMateRules": [{
  5. "scope": "source.haskell keyword.operator, source.haskell keyword.other.arrow, source.haskell keyword.other.double-colon",
  6. "settings": {
  7. "foreground": "#e45649"
  8. }
  9. },
  10. {
  11. "scope": "source.haskell meta.preprocessor",
  12. "settings": {
  13. "foreground": "#a0a1a7"
  14. }
  15. },
  16. {
  17. "scope": "source.haskell keyword.other.preprocessor",
  18. "settings": {
  19. "foreground": "#696c77"
  20. }
  21. },
  22. {
  23. "scope": "source.haskell storage.type",
  24. "settings": {
  25. "foreground": "#c18401"
  26. }
  27. }
  28. ],
  29. }
Add Comment
Please, Sign In to add comment