Skip to content

Commit

Permalink
Version 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbet committed Feb 1, 2021
1 parent c03e62f commit 78a9e9b
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 16 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
37 changes: 32 additions & 5 deletions themes/monokai-nicbet.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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": [
Expand Down Expand Up @@ -232,6 +250,15 @@
"settings": {
"foreground": "#F6AA11"
}
},
{
"name": "Embedded Ruby ERB Line",
"scope": [
"meta.embedded.line.erb"
],
"settings": {
"fontStyle": "italic"
}
}
]
}

0 comments on commit 78a9e9b

Please sign in to comment.