Advertisement
Dmitry_Dronov

Default.sublime-theme

Feb 13th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Dark theme (twilight) for sublime text folder sidebar. Click Browse Packages and add file named "Default.sublime-theme" to Packages/User
  2. [
  3. {
  4. "class": "sidebar_container",
  5. // right border
  6. "layer0.tint": [84,84,84],
  7. "layer0.opacity": 1.0,
  8. "layer0.draw_center": false,
  9. "layer0.inner_margin": [0, 0, 1, 0],
  10. "content_margin": [0, 0, 1, 0]
  11. },
  12. {
  13. "class": "sidebar_tree",
  14. "row_padding": [8, 3],
  15. "indent": 12,
  16. "indent_offset": 17,
  17. "indent_top_level": false,
  18. // background
  19. "layer0.tint": [20,20,20],
  20. "layer0.opacity": 1.0,
  21. "dark_content": false
  22. },
  23. {
  24. "class": "sidebar_heading",
  25. // heading
  26. "color": [219,230,230],
  27. "font.bold": true,
  28. "shadow_color": [0,0,0],
  29. "shadow_offset": [0, 1]
  30. },
  31. {
  32. "class": "sidebar_heading",
  33. "parents":
  34. [
  35. { "class": "tree_row", "attributes": ["selected"] }
  36. ],
  37. "shadow_color": [0, 0, 0]
  38. },
  39. {
  40. "class": "sidebar_label",
  41. // folder/file labels
  42. "color": [134,134,134],
  43. "font.bold": false
  44. , "shadow_color": [0, 0, 0], "shadow_offset": [0, 1]
  45. },
  46. {
  47. "class": "sidebar_label",
  48. "parents": [{"class": "tree_row", "attributes": ["selected"]}],
  49. // selected file
  50. "color": [255,255,255]
  51. , "shadow_color": [26, 26, 26], "shadow_offset": [0, 1]
  52. },
  53. {
  54. "class": "sidebar_label",
  55. "parents": [{"class": "tree_row", "attributes": ["expandable"]}],
  56. "settings": ["bold_folder_labels"],
  57. "font.bold": true
  58. }
  59. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement