Skip to content

Commit

Permalink
Update Typper theme version and add repository and scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Joao208 committed Feb 3, 2024
1 parent f0a37f0 commit e4d21f8
Show file tree
Hide file tree
Showing 13 changed files with 103 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ For an even more immersive experience, we recommend combining the Typper theme w

```json
{
"workbench.iconTheme": "minimal-icons",
"workbench.iconTheme": "typper-icons",
"workbench.colorTheme": "Typper",
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
Expand Down
19 changes: 19 additions & 0 deletions icons.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"hidesExplorerArrows": true,
"iconDefinitions": {
"_file_dark": { "iconPath": "./icons/dark/file.svg" },
"_file_light": { "iconPath": "./icons/light/file.svg" },
"_folder_dark": { "iconPath": "./icons/dark/folder.svg" },
"_folder_light": { "iconPath": "./icons/light/folder.svg" },
"_folder_open_dark": { "iconPath": "./icons/dark/folder-open.svg" },
"_folder_open_light": { "iconPath": "./icons/light/folder-open.svg" }
},
"file": "_file_dark",
"folder": "_folder_dark",
"folderExpanded": "_folder_open_dark",
"light": {
"file": "_file_light",
"folder": "_folder_light",
"folderExpanded": "_folder_open_light"
}
}
7 changes: 7 additions & 0 deletions icons/dark/file.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions icons/dark/folder-open.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions icons/dark/folder.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions icons/light/file.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions icons/light/folder-open.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions icons/light/folder.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 18 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "typper-theme",
"displayName": "Typper Themes",
"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.12",
"version": "0.0.13",
"publisher": "Typper",
"icon": "icon.png",
"engines": {
Expand All @@ -11,18 +11,35 @@
"categories": [
"Themes"
],
"repository": {
"type": "git",
"url": "https://github.com/typper-io/typper-theme.git"
},
"scripts": {
"build": "vsce package --baseContentUrl https://raw.githubusercontent.com/typper-io/typper-theme/main/ --baseImagesUrl https://raw.githubusercontent.com/typper-io/typper-theme/main/ --skip-license",
"publish": "vsce publish --baseContentUrl https://raw.githubusercontent.com/typper-io/typper-theme/main/ --baseImagesUrl https://raw.githubusercontent.com/typper-io/typper-theme/main/ --skip-license"
},
"contributes": {
"themes": [
{
"id": "typper-dark",
"label": "Typper Dark",
"uiTheme": "vs-dark",
"path": "./themes/typper-dark-color-theme.json"
},
{
"id": "typper-light",
"label": "Typper Light",
"uiTheme": "vs",
"path": "./themes/typper-light-color-theme.json"
}
],
"iconThemes": [
{
"id": "typper-icons",
"label": "Typper Icons",
"path": "./icons.json"
}
]
}
}
Binary file modified theme-example-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified theme-example-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 11 additions & 11 deletions themes/typper-dark-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"button.foreground": "#FBFFF6",
"button.hoverBackground": "#0139CB",
"editorCursor.foreground": "#0047FD",
"editor.selectionBackground": "#0047FD60",
"editor.selectionBackground": "#44475A90",
"editorLineNumber.foreground": "#FBFFF699",
"editorLineNumber.activeForeground": "#FBFFF6",
"editorWhitespace.foreground": "#FBFFF61A",
Expand All @@ -34,61 +34,61 @@
{
"scope": ["comment", "punctuation.definition.comment", "string.comment"],
"settings": {
"foreground": "#7BD90599"
"foreground": "#6272A4"
}
},
{
"scope": "constant",
"settings": {
"foreground": "#FFABC7"
"foreground": "#8BE9FD"
}
},
{
"scope": "entity",
"settings": {
"foreground": "#FFABC7"
"foreground": "#FFB86C"
}
},
{
"scope": "variable",
"settings": {
"foreground": "#FBFFF6"
"foreground": "#F1FA8C"
}
},
{
"scope": "keyword",
"settings": {
"foreground": "#0047FD"
"foreground": "#FF79C6"
}
},
{
"scope": "storage",
"settings": {
"foreground": "#0047FD"
"foreground": "#FF79C6"
}
},
{
"scope": "string",
"settings": {
"foreground": "#7BD905"
"foreground": "#50FA7B"
}
},
{
"scope": "invalid",
"settings": {
"foreground": "#FF0000"
"foreground": "#FF5555"
}
},
{
"scope": "entity.name.class",
"settings": {
"foreground": "#FFABC7"
"foreground": "#66D9EF"
}
},
{
"scope": "meta.class",
"settings": {
"foreground": "#FBFFF6"
"foreground": "#F8F8F2"
}
}
]
Expand Down
20 changes: 10 additions & 10 deletions themes/typper-light-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"colors": {
"editor.background": "#FBFFF6",
"editor.foreground": "#10142C",
"editor.lineHighlightBackground": "#7BD90550",
"activityBar.background": "#FBFFF6",
"activityBar.foreground": "#10142C",
"sideBar.background": "#FBFFF6",
Expand All @@ -16,7 +15,6 @@
"button.foreground": "#FBFFF6",
"button.hoverBackground": "#0047FDCC",
"editorCursor.foreground": "#0047FD",
"editor.selectionBackground": "#0047FD30",
"editorLineNumber.foreground": "#00000088",
"editorLineNumber.activeForeground": "#10142C",
"editorWhitespace.foreground": "#10142C1A",
Expand All @@ -31,13 +29,15 @@
"tab.activeForeground": "#10142C",
"tab.hoverBorder": "#0047FD",
"tab.activeBorder": "#0047FD",
"tab.unfocusedActiveBorder": "#FBFFF6"
"tab.unfocusedActiveBorder": "#FBFFF6",
"editor.selectionBackground": "#D3D3D360",
"editor.lineHighlightBackground": "#00000010"
},
"tokenColors": [
{
"scope": ["comment", "punctuation.definition.comment", "string.comment"],
"settings": {
"foreground": "#7BD90599"
"foreground": "#6A8F41"
}
},
{
Expand All @@ -55,37 +55,37 @@
{
"scope": "variable",
"settings": {
"foreground": "#10142C"
"foreground": "#6D9CBE"
}
},
{
"scope": "keyword",
"settings": {
"foreground": "#0047FD"
"foreground": "#C792EA"
}
},
{
"scope": "storage",
"settings": {
"foreground": "#0047FD"
"foreground": "#C792EA"
}
},
{
"scope": "string",
"settings": {
"foreground": "#7BD905"
"foreground": "#F78C6C"
}
},
{
"scope": "invalid",
"settings": {
"foreground": "#FF0000"
"foreground": "#FF5370"
}
},
{
"scope": "entity.name.class",
"settings": {
"foreground": "#FFABC7"
"foreground": "#82AAFF"
}
},
{
Expand Down

0 comments on commit e4d21f8

Please sign in to comment.