diff --git a/LICENSE b/LICENSE index 30a307f..41ba1c0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Nicolas Bettenburg +Copyright (c) 2020-2021 Nicolas Bettenburg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 3067f7a..8bb66ec 100644 --- a/README.md +++ b/README.md @@ -3,18 +3,12 @@ This theme has been developed while using it with Ruby on Rails, JavaScript ES6, and SASS. ## Screenshot -![Theme Screenshot](screenshot-v0.1.0.png) - -Please note that screenshot is taken while using these settings: -``` - "editor.renderWhitespace": "selection", - "editor.fontFamily": "Operator Mono", - "editor.fontSize": 15 -``` +![Theme Screenshot](screenshot-v0.1.0.png) ## What's New? +- `0.1.2` Added custom terminal color scheme, improved ERB highlighting - `0.1.1` Add support for React (JS, JSX) syntax highlights - `0.1.0` Initial Color theme with support for Ruby and Ruby on Rails @@ -45,7 +39,7 @@ $ cd ~/.vscode/extensions/ Clone repository as `monokai-nicbet`: ```bash -$ git clone https://github.com/nicbet/vscode-monokai-nicbet nicbet.monokai-nicbet-0.1.0 +$ git clone https://github.com/nicbet/vscode-monokai-nicbet nicbet.monokai-nicbet-0.1.2 ``` Now you can select this theme from the Theme selector in VSCode diff --git a/package.json b/package.json index 647cf34..8ffa602 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "monokai-nicbet", "displayName": "Monokai Nicbet", "description": "Color scheme for Visual Studio Code", - "version": "0.1.1", + "version": "0.1.2", "publisher": "nicbet", "license": "CC0-1.0", "author": { diff --git a/themes/monokai-nicbet.json b/themes/monokai-nicbet.json index ed562fe..c6fb8c3 100644 --- a/themes/monokai-nicbet.json +++ b/themes/monokai-nicbet.json @@ -27,10 +27,10 @@ "statusBar.background": "#0F1014", "statusBarItem.prominentBackground": "#FF006B", // Title Bar - "titleBar.activeBackground": "#0F1014", - "titleBar.activeForeground": "#DDDDDD", - "titleBar.inactiveBackground": "#0F1014", - "titleBar.inactiveForeground": "#999999", + "titleBar.activeBackground": "#282c34", + "titleBar.activeForeground": "#9da5b4", + "titleBar.inactiveBackground": "#282c34", + "titleBar.inactiveForeground": "#6b717d", // Editor Groups and Tabs "editorGroup.background": "#0F1014", "editorGroupHeader.noTabsBackground": "#0F1014", @@ -50,7 +50,25 @@ "editorOverviewRuler.deletedForeground": "#181920", // VSCode Remote icon "statusBarItem.remoteBackground": "#121519", - "statusBarItem.remoteForeground": "#ccc" + "statusBarItem.remoteForeground": "#ccc", + // Terminal + "terminal.background": "#11110f", + "terminal.ansiBlack": "#ffffff", + "terminal.ansiBlue": "#5787fd", + "terminal.ansiBrightBlack": "#a6a6a6", + "terminal.ansiBrightBlue": "#d6e8fe", + "terminal.ansiBrightCyan": "#84d7ec", + "terminal.ansiBrightGreen": "#e3fabb", + "terminal.ansiBrightMagenta": "#edb8fd", + "terminal.ansiBrightRed": "#f0c7be", + "terminal.ansiBrightWhite": "#ffffff", + "terminal.ansiBrightYellow": "#fefdd6", + "terminal.ansiCyan": "#84d7ec", + "terminal.ansiGreen": "#8be335", + "terminal.ansiMagenta": "#e21d5b", + "terminal.ansiRed": "#eb2175", + "terminal.ansiWhite": "#dfdfdf", + "terminal.ansiYellow": "#e0dd5f", }, "tokenColors": [ @@ -232,6 +250,15 @@ "settings": { "foreground": "#F6AA11" } + }, + { + "name": "Embedded Ruby ERB Line", + "scope": [ + "meta.embedded.line.erb" + ], + "settings": { + "fontStyle": "italic" + } } ] }