summer-time
Version:
🍧 A modern Dark Material theme for VS-Code IDE 🍦
209 lines (162 loc) • 6.95 kB
Markdown
# [](https://marketplace.visualstudio.com/items?itemName=DennisVash.summer-time#overview)
[](https://marketplace.visualstudio.com/items?itemName=DennisVash.summer-time) [](https://marketplace.visualstudio.com/items?itemName=DennisVash.summer-time) [](https://marketplace.visualstudio.com/items?itemName=DennisVash.summer-time) [](https://marketplace.visualstudio.com/items?itemName=DennisVash.summer-time)
> A modern Dark Material Theme which lets you forget the summer while coding.
The **minimalistic design** makes the developer to **concentrate** on what's important while **understanding** the code flow.
*Look it up at [VS-Marketplace](https://marketplace.visualstudio.com/items?itemName=DennisVash.summer-time#overview).*
## Color Palette
<div align="center">
<a>
<img src="https://user-images.githubusercontent.com/27515937/52947285-f4f36b00-337e-11e9-9d42-06537443c648.png" alt="Summer-Time-Logo" width="300px" />
</a>
</div>
## Usage
-  `#F699D9` Keywords
-  `#AEE9F5` Variables
-  `#EBEA8B` Operators
-  `#A8F79A` Static
-  `#ECF6FF` Functions
-  `#282c34` Background
## Screenshots
<div align="center">





















</div>
## Configuration
- FiraCode and Hack fonts, find more at [Nerd-Fonts](https://github.com/ryanoasis/nerd-fonts)
- [Material Icon Theme](https://marketplace.visualstudio.com/items?itemName=DennisVash.summer-time)
- [Bracket Pair Colorizer](https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer)
Recommended [VSCode Settings](https://code.visualstudio.com/docs/getstarted/settings):
```json
// Work Bench
"workbench.colorTheme": "Summer Time",
"workbench.iconTheme": "material-icon-theme",
"workbench.statusBar.feedback.visible": false,
"workbench.statusBar.visible": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.highlightModifiedTabs": true,
// Window
"window.menuBarVisibility": "toggle",
"window.zoomLevel": 1,
"window.titleBarStyle": "custom",
// Explorer
"explorer.confirmDelete": false,
"explorer.sortOrder": "type",
"explorer.confirmDragAndDrop": false,
"explorer.decorations.badges": false,
// Editor
"editor.fontFamily": "FuraCode Nerd Font, Light",
"editor.mouseWheelZoom": true,
"editor.snippetSuggestions": "bottom",
"editor.autoClosingBrackets": "always",
"editor.rulers": [100],
"editor.renderIndentGuides": false,
"editor.fontLigatures": true,
"editor.renderControlCharacters": false,
"editor.autoClosingQuotes": "always",
"editor.formatOnSave": true,
"editor.formatOnType": false,
"editor.fontSize": 15,
"editor.lineHeight": 24.65,
"editor.letterSpacing": 0.5,
"editor.fontWeight": "400",
"editor.cursorStyle": "line-thin",
"editor.cursorWidth": 5,
"editor.cursorBlinking": "solid",
"editor.renderWhitespace": "all",
"editor.glyphMargin": true,
"editor.suggest.snippetsPreventQuickSuggestions": true,
// Terminal
"terminal.integrated.cursorStyle": "underline",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontWeight": "normal",
"terminal.integrated.fontFamily": "Hack Nerd Font Mono, ExtraLight",
"terminal.integrated.rendererType": "dom",
"terminal.integrated.fontWeightBold": "normal",
// Files
"files.autoSave": "onFocusChange",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true
},
"files.associations": {
"*.react.js": "javascriptreact",
"*.stories.js": "javascriptreact",
"*.js": "javascript"
},
// Material Icons
"material-icon-theme.activeIconPack": "react_redux",
"material-icon-theme.folders.theme": "specific",
"material-icon-theme.hidesExplorerArrows": true,
"material-icon-theme.folders.color": "#F699D9",
"material-icon-theme.files.associations": {
"*.ts": "typescript",
"fileName.ts": "angular",
"*.react.js": "react"
},
// Sync
"sync.gist": "37489160d4242adee13d821d95858f97",
"sync.autoUpload": true,
"sync.autoDownload": true,
"sync.quietSync": false,
// Git
"git.autofetch": true,
"git.confirmSync": false,
// Prettier
"prettier.eslintIntegration": true,
"prettier.singleQuote": true,
// Eslint
"eslint.autoFixOnSave": true,
"eslint.enable": true,
"eslint.run": "onType",
// SOP's Import Cost Extension Settings.
"importCost.largePackageColor": "#F699D9",
"importCost.mediumPackageColor": "#EBEA8B",
"importCost.smallPackageColor": "#EBEA8B",
// Better comments
"better-comments.tags": [
{
"tag": "*",
"color": "#EBEA8B",
"strikethrough": false,
"backgroundColor": "transparent"
}
],
// Bookmarks
"numberedBookmarks.gutterIconFillColor": "#F699D9",
"numberedBookmarks.gutterIconNumberColor": "#000",
// Others
"javascript.format.enable": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": true,
"debug.toolBarLocation": "docked",
"markdown-preview-enhanced.enableTypographer": true,
"svg.preview.autoOpen": true
```
## Other Places
- [JetBrains-Theme](https://github.com/denvash/summer-time-theme-jetbrains)