Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unofficial GitLab Color Scheme with Light and Dark variants #392

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions themes.json
Original file line number Diff line number Diff line change
Expand Up @@ -2260,5 +2260,17 @@
"FileName": "Sahara.tmTheme",
"Author": "Christopher Jaoude",
"Description": "Unique sand theme: high endurance, low eye strain. (v0.5)"
},
{
"Author": "Sri",
"Description": "Unofficial GitLab inspired light color scheme",
"FileName": "gitlab-light.sublime-color-scheme",
"Title": "GitLab Light (Unofficial)"
},
{
"Author": "Sri",
"Description": "Unofficial GitLab inspired dark color scheme",
"FileName": "gitlab-dark.sublime-color-scheme",
"Title": "GitLab Dark (Unofficial)"
}
]
68 changes: 68 additions & 0 deletions themes/gitlab-dark.sublime-color-scheme
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"name": "GitLab Dark Color Scheme",
"variables":
{
"orange_light": "#fca121",
"orange": "#fc6d26",
"red": "#db3b21",
"purple_light": "#6e49cb",
"purple": "#380d75",
"gray_dark": "#2e2e2e",
"gray_light": "#9e9e9e",
"white": "#fff",
"white_faded": "#f9f9f9",
},
"globals":
{
"background": "var(gray_dark)",
"foreground": "var(white_faded)",
"caret": "var(white_faded)",
"selection_foreground": "var(white)",
},
"rules":
[
{
"name": "Comment",
"scope": "comment",
"foreground": "var(gray_light)",
},
{
"name": "Invalid",
"scope": "invalid",
"foreground": "var(gray_light)",
},
{
"name": "String",
"scope": "string",
"foreground": "var(orange_light)",
},
{
"name": "Number",
"scope": "constant.numeric",
"foreground": "var(orange_light)",
},
{
"name": "Variable",
"scope": "variable",
"foreground": "var(orange)",
},
{
"name": "Entity",
"scope": "entity",
"foreground": "var(orange)",
"font_style": "italic",
},
{
"name": "Keyword",
"scope": "keyword",
"foreground": "var(orange)",
"font_style": "italic",
},
{
"name": "Storage",
"scope": "storage",
"foreground": "var(orange)",
"font_style": "italic",
},
]
}
65 changes: 65 additions & 0 deletions themes/gitlab-light.sublime-color-scheme
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"name": "GitLab Light Color Scheme",
"variables":
{
"orange_light": "#fca121",
"orange": "#fc6d26",
"red": "#db3b21",
"purple_light": "#6e49cb",
"purple": "#380d75",
"gray_dark": "#2e2e2e",
"gray_light": "#9e9e9e",
"white": "#fff",
},
"globals":
{
"background": "var(white)",
"foreground": "var(purple)",
"caret": "var(orange)",
"selection_foreground": "var(white)"
},
"rules":
[
{
"name": "Comment",
"scope": "comment",
"foreground": "var(gray_light)",
},
{
"name": "Invalid",
"scope": "invalid",
"foreground": "var(gray_light)",
},
{
"name": "String",
"scope": "string",
"foreground": "var(red)",
},
{
"name": "Number",
"scope": "constant.numeric",
"foreground": "var(red)",
},
{
"name": "Variable",
"scope": "variable",
"foreground": "var(purple_light)",
},
{
"name": "Entity",
"scope": "entity",
"foreground": "var(gray_dark)",
},
{
"name": "Keyword",
"scope": "keyword",
"foreground": "var(gray_dark)",
},
{
"name": "Storage",
"scope": "storage",
"foreground": "var(gray_dark)",
"font_style": "italic",
},
]
}