Skip to content

Commit

Permalink
Update Typper theme version and add Typper Dark and Typper Light themes
Browse files Browse the repository at this point in the history
  • Loading branch information
Joao208 committed Feb 3, 2024
1 parent 60ac02b commit f10ab5b
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 4 deletions.
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "typper-theme",
"displayName": "typper-theme",
"description": "The Typper theme for VS Code is a sleek representation of the innovative AI startup Typper, offering a modern color palette that complements their vibrant branding. Optimized for clarity, the theme enhances productivity and aesthetic pleasure for developers.",
"version": "0.0.6",
"version": "0.0.7",
"publisher": "Typper",
"icon": "icon.png",
"engines": {
Expand All @@ -14,9 +14,14 @@
"contributes": {
"themes": [
{
"label": "Typper",
"label": "Typper Dark",
"uiTheme": "vs-dark",
"path": "./themes/Typper-color-theme.json"
"path": "./themes/typper-dark-color-theme.json"
},
{
"label": "Typper Light",
"uiTheme": "vs-dark",
"path": "./themes/typper-light-color-theme.json"
}
]
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Typper Color Theme",
"name": "Typper Dark",
"colors": {
"editor.background": "#10142C",
"editor.foreground": "#FBFFF6",
Expand Down
95 changes: 95 additions & 0 deletions themes/typper-light-color-theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
{
"name": "Typper Light",
"colors": {
"editor.background": "#FBFFF6",
"editor.foreground": "#10142C",
"editor.lineHighlightBackground": "#7BD90533",
"activityBar.background": "#FBFFF6",
"activityBar.foreground": "#10142C",
"sideBar.background": "#FBFFF6",
"sideBar.foreground": "#10142C",
"statusBar.background": "#0047FD",
"statusBar.foreground": "#FBFFF6",
"titleBar.activeBackground": "#FBFFF6",
"titleBar.activeForeground": "#10142C",
"button.background": "#0047FD",
"button.foreground": "#FBFFF6",
"button.hoverBackground": "#0047FDCC",
"editorCursor.foreground": "#0047FD",
"editor.selectionBackground": "#0047FD60",
"editorLineNumber.foreground": "#10142C99",
"editorLineNumber.activeForeground": "#10142C",
"editorWhitespace.foreground": "#10142C1A",
"editorGroupHeader.tabsBackground": "#FBFFF6",
"tab.inactiveBackground": "#FBFFF6",
"tab.activeBackground": "#FBFFF6",
"tab.hoverBackground": "#FBFFF6",
"tab.unfocusedHoverBackground": "#FBFFF6",
"editorWidget.background": "#FBFFF6",
"editorWidget.border": "#0047FD",
"tab.inactiveForeground": "#10142C99",
"tab.activeForeground": "#10142C"
},
"tokenColors": [
{
"scope": ["comment", "punctuation.definition.comment", "string.comment"],
"settings": {
"foreground": "#7BD90599"
}
},
{
"scope": "constant",
"settings": {
"foreground": "#FFABC7"
}
},
{
"scope": "entity",
"settings": {
"foreground": "#FFABC7"
}
},
{
"scope": "variable",
"settings": {
"foreground": "#10142C"
}
},
{
"scope": "keyword",
"settings": {
"foreground": "#0047FD"
}
},
{
"scope": "storage",
"settings": {
"foreground": "#0047FD"
}
},
{
"scope": "string",
"settings": {
"foreground": "#7BD905"
}
},
{
"scope": "invalid",
"settings": {
"foreground": "#FF0000"
}
},
{
"scope": "entity.name.class",
"settings": {
"foreground": "#FFABC7"
}
},
{
"scope": "meta.class",
"settings": {
"foreground": "#10142C"
}
}
]
}

0 comments on commit f10ab5b

Please sign in to comment.