Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 10020ed878 | |||
| cece69fdd2 | |||
|
|
55fcc4ade9 |
15
CHANGELOG.md
Executable file → Normal file
15
CHANGELOG.md
Executable file → Normal file
@ -4,8 +4,19 @@ All notable changes to the "vscode-theme-onelight" extension will be documented
|
|||||||
|
|
||||||
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
|
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
|
||||||
|
|
||||||
|
## [1.0.0]
|
||||||
|
### Changed
|
||||||
|
- Re-publish from original archived repo
|
||||||
|
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## [0.2.1]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Project unmaintained
|
||||||
|
|
||||||
## [0.2.0]
|
## [0.2.0]
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
@ -17,6 +28,8 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
|
|||||||
|
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/laggardkernel/vscode-theme-onelight/compare/v0.2.0..master
|
[1.0.0]: https://git.isliberty.me/abby/vscode-theme-onelight/src/tag/v1.0.0
|
||||||
|
[Unreleased]: https://github.com/laggardkernel/vscode-theme-onelight/compare/v0.2.1..master
|
||||||
|
[0.2.1]: https://github.com/laggardkernel/vscode-theme-onelight/compare/v0.2.0..v0.2.1
|
||||||
[0.2.0]: https://github.com/laggardkernel/vscode-theme-onelight/compare/v0.1.0..v0.2.0
|
[0.2.0]: https://github.com/laggardkernel/vscode-theme-onelight/compare/v0.1.0..v0.2.0
|
||||||
[0.1.0]: https://github.com/laggardkernel/vscode-theme-onelight/releases/tag/v0.1.0
|
[0.1.0]: https://github.com/laggardkernel/vscode-theme-onelight/releases/tag/v0.1.0
|
||||||
|
|||||||
19
LICENSE
Normal file
19
LICENSE
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
Copyright 2021 AbbyCin
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
196
README.md
196
README.md
@ -1,10 +1,200 @@
|
|||||||
# One Light Italic
|
# One Light Italic2
|
||||||
|
|
||||||
|
slightly modifed of the following theme
|
||||||
|
|
||||||
|
# [One Light Italic](https://github.com/laggardkernel/vscode-theme-onelight)
|
||||||
|
|
||||||
|
**Project unmaintained**.
|
||||||
|
|
||||||
|
I recommend the [Yi Theme][yi-theme] for you. It is the only true port of
|
||||||
|
Atom's One theme I've known. Most all of the other Atom one light themes
|
||||||
|
use the `.tmTheme` color format or a direct json conversion of this format.
|
||||||
|
(`.tmTheme` stands for TextMate theme, some editors like Sublime and VSCode
|
||||||
|
have support for this legacy format.)
|
||||||
|
|
||||||
|
It looks like the [Yi Theme][yi-theme] stands out from all the other Atom themes
|
||||||
|
(not only the light ones) cause
|
||||||
|
|
||||||
|
- It's a true port from Atom's One theme based on the source code of Atom
|
||||||
|
- It includes both light and dark themes
|
||||||
|
- It covers not only the text syntax color, but also colors for the other part
|
||||||
|
of the VSCode UI, like workbench.
|
||||||
|
|
||||||
|
It's a pity that Yi Theme doesn't include "Atom One" in its name and doesn't
|
||||||
|
appear in the search result of keyword like "atom one theme" in the marketplace.
|
||||||
|
|
||||||
|
For anyone like the italic syntax in this color theme, use following
|
||||||
|
*token color customization* settings.
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>editor.tokenColorCustomizations</summary>
|
||||||
|
|
||||||
|
```jsonc
|
||||||
|
"editor.tokenColorCustomizations": {
|
||||||
|
"textMateRules": [
|
||||||
|
{ // from Atom One Dark
|
||||||
|
"name": "js/ts italic",
|
||||||
|
"scope":[
|
||||||
|
// Why not attribute-name, .html, .pseudo-class.css
|
||||||
|
"entity.other.attribute-name.js",
|
||||||
|
"entity.other.attribute-name.ts",
|
||||||
|
"entity.other.attribute-name.jsx",
|
||||||
|
"entity.other.attribute-name.tsx",
|
||||||
|
// "variable.parameter", // TODO: too generic
|
||||||
|
"variable.language.super",
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"fontStyle": "italic"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ // from ejeldes.one-dark-italic-theme
|
||||||
|
"name": "js ts this",
|
||||||
|
"scope": [
|
||||||
|
"var.this",
|
||||||
|
"variable.language.this.js",
|
||||||
|
"variable.language.this.ts",
|
||||||
|
"variable.language.this.jsx",
|
||||||
|
"variable.language.this.tsx",
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"fontStyle": "italic"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// "name": "comment",
|
||||||
|
// "scope": "comment.line.double-slash,comment.block.documentation",
|
||||||
|
// "settings": {
|
||||||
|
// "fontStyle": "italic"
|
||||||
|
// }
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
{ // from laggardkernel.vscode-theme-onelight
|
||||||
|
"name": "Italic",
|
||||||
|
"scope": [
|
||||||
|
"comment",
|
||||||
|
"comment.block variable.parameter",
|
||||||
|
"comment.block",
|
||||||
|
"comment.block.documentation entity.name.type",
|
||||||
|
"comment.block.documentation punctuation.definition",
|
||||||
|
"comment.block.documentation variable",
|
||||||
|
"comment.block.documentation",
|
||||||
|
"constant.language",
|
||||||
|
"entity.name.class",
|
||||||
|
"entity.other.attribute-name",
|
||||||
|
"keyword",
|
||||||
|
"keyword.operator.expression",
|
||||||
|
"keyword.operator.new",
|
||||||
|
"keyword.other.documentation",
|
||||||
|
"keyword.other.phpdoc",
|
||||||
|
"markup.changed",
|
||||||
|
"markup.deleted",
|
||||||
|
"markup.inserted",
|
||||||
|
"markup.italic",
|
||||||
|
"markup.quote",
|
||||||
|
"punctuation.definition.comment",
|
||||||
|
"punctuation.definition.italic",
|
||||||
|
"storage",
|
||||||
|
"storage.type.class.jsdoc",
|
||||||
|
"string.comment",
|
||||||
|
"variable.language",
|
||||||
|
//
|
||||||
|
// "variable.parameter",
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"fontStyle": "italic"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ // From laggardkernel.vscode-theme-onelight
|
||||||
|
"name": "No Italic",
|
||||||
|
"scope": [
|
||||||
|
"entity.name.tag",
|
||||||
|
"keyword.operator",
|
||||||
|
"keyword.other.unit",
|
||||||
|
"keyword.other.special-method",
|
||||||
|
"support.type.property-name",
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"fontStyle": "" // empty for normal
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
Besides, here's also my custom terminal color definition. A modified version of
|
||||||
|
base16 "One Light" and "Onedark". Just put it here in case anyone wanna have
|
||||||
|
a try.
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>terminal color customization</summary>
|
||||||
|
|
||||||
|
```jsonc
|
||||||
|
"terminal.integrated.drawBoldTextInBrightColors": false,
|
||||||
|
// One Half Light modified, based on https://glitchbone.github.io/vscode-base16-term/
|
||||||
|
"workbench.colorCustomizations": {
|
||||||
|
"[Yi Light]": {
|
||||||
|
"terminal.foreground": "#383a42",
|
||||||
|
"terminal.background": "#fafafa",
|
||||||
|
// "terminal.selectionForeground": "#383a42",
|
||||||
|
"terminal.selectionBackground": "#bfceff",
|
||||||
|
"terminalCursor.foreground": "#cc00be",
|
||||||
|
"terminal.border": "#657b83",
|
||||||
|
"terminal.ansiBlack": "#383a42",
|
||||||
|
"terminal.ansiRed": "#e45649",
|
||||||
|
"terminal.ansiGreen": "#50a14f",
|
||||||
|
"terminal.ansiYellow": "#c18401",
|
||||||
|
"terminal.ansiBlue": "#2f5af3",
|
||||||
|
"terminal.ansiMagenta": "#a626a4",
|
||||||
|
"terminal.ansiCyan": "#00b7eb",
|
||||||
|
"terminal.ansiWhite": "#fafafa",
|
||||||
|
"terminal.ansiBrightBlack": "#797979",
|
||||||
|
"terminal.ansiBrightRed": "#e06c75",
|
||||||
|
"terminal.ansiBrightGreen": "#98c379",
|
||||||
|
"terminal.ansiBrightYellow": "#e5c07b",
|
||||||
|
"terminal.ansiBrightBlue": "#4b72ff",
|
||||||
|
"terminal.ansiBrightMagenta": "#c678dd",
|
||||||
|
"terminal.ansiBrightCyan": "#00b7eb",
|
||||||
|
"terminal.ansiBrightWhite": "#fafafa",
|
||||||
|
},
|
||||||
|
"[Yi Dark]": {
|
||||||
|
"terminal.foreground": "#dcdfe4",
|
||||||
|
"terminal.background": "#282c34",
|
||||||
|
// "terminal.selectionForeground": "#dcdfe4",
|
||||||
|
"terminal.selectionBackground": "#454D95",
|
||||||
|
"terminalCursor.foreground": "#cc00be",
|
||||||
|
"terminal.border": "#555555",
|
||||||
|
"terminal.ansiBlack": "#282c34",
|
||||||
|
"terminal.ansiRed": "#e06c75",
|
||||||
|
"terminal.ansiGreen": "#98c379",
|
||||||
|
"terminal.ansiYellow": "#e5c07b",
|
||||||
|
"terminal.ansiBlue": "#61afef",
|
||||||
|
"terminal.ansiMagenta": "#c678dd",
|
||||||
|
"terminal.ansiCyan": "#56b6c2",
|
||||||
|
"terminal.ansiWhite": "#dcdfe4",
|
||||||
|
"terminal.ansiBrightBlack": "#5d677a",
|
||||||
|
"terminal.ansiBrightRed": "#e06c75",
|
||||||
|
"terminal.ansiBrightGreen": "#98c379",
|
||||||
|
"terminal.ansiBrightYellow": "#e5c07b",
|
||||||
|
"terminal.ansiBrightBlue": "#61afef",
|
||||||
|
"terminal.ansiBrightMagenta": "#c678dd",
|
||||||
|
"terminal.ansiBrightCyan": "#56b6c2",
|
||||||
|
"terminal.ansiBrightWhite": "#dcdfe4",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
Atom one light theme with italic support for VSCode.
|
Atom one light theme with italic support for VSCode.
|
||||||
|
|
||||||
[Github Repo](https://github.com/laggardkernel/vscode-theme-onelight)
|
[Github Repo](https://github.com/laggardkernel/vscode-theme-onelight)
|
||||||
|
|
||||||
Althought this them defines light ansi colors for terminal, it's designed to be used by TUI apps but not the shell itself.
|
Althought this them defines light ansi colors for terminal, it's designed to
|
||||||
|
be used by TUI apps but not the shell itself.
|
||||||
|
|
||||||
```json
|
```json
|
||||||
"terminal.integrated.drawBoldTextInBrightColors": false,
|
"terminal.integrated.drawBoldTextInBrightColors": false,
|
||||||
@ -20,3 +210,5 @@ Althought this them defines light ansi colors for terminal, it's designed to be
|
|||||||
- [One Half Light tmTheme](https://tmtheme-editor.herokuapp.com/#!/editor/theme/One%20Half%20Light)
|
- [One Half Light tmTheme](https://tmtheme-editor.herokuapp.com/#!/editor/theme/One%20Half%20Light)
|
||||||
- [GitHub's VS Code themes](https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme)
|
- [GitHub's VS Code themes](https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme)
|
||||||
- [atom one-light-syntax](https://github.com/atom/atom/tree/master/packages/one-light-syntax)
|
- [atom one-light-syntax](https://github.com/atom/atom/tree/master/packages/one-light-syntax)
|
||||||
|
|
||||||
|
[yi-theme]: https://marketplace.visualstudio.com/items?itemName=wangweixuan.yithemes
|
||||||
|
|||||||
83
package.json
83
package.json
@ -1,48 +1,39 @@
|
|||||||
{
|
{
|
||||||
"name": "vscode-theme-onelight",
|
"name": "vscode-onelight2",
|
||||||
"displayName": "One Light Italic",
|
"displayName": "One Light Italic2",
|
||||||
"description": "One light theme with italic support for VSCode",
|
"description": "One light theme with italic support for VSCode",
|
||||||
"version": "0.2.0",
|
"version": "1.0.0",
|
||||||
"publisher": "laggardkernel",
|
"publisher": "AbbyCin",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.12.0"
|
"vscode": "^1.12.0"
|
||||||
},
|
},
|
||||||
"categories": [
|
"categories": [
|
||||||
"Themes"
|
"Themes"
|
||||||
],
|
],
|
||||||
"extensionKind": [
|
"extensionKind": [
|
||||||
"ui",
|
"ui",
|
||||||
"workspace"
|
"workspace"
|
||||||
],
|
],
|
||||||
"icon": "icon.png",
|
"icon": "icon.png",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"one light",
|
"one light",
|
||||||
"onelight",
|
"onelight",
|
||||||
"theme",
|
"theme",
|
||||||
"atom"
|
"atom"
|
||||||
],
|
],
|
||||||
"contributes": {
|
"contributes": {
|
||||||
"themes": [
|
"themes": [
|
||||||
{
|
{
|
||||||
"label": "Atom One Light",
|
"label": "Atom One Light2",
|
||||||
"uiTheme": "vs",
|
"uiTheme": "vs",
|
||||||
"path": "./themes/one-light.json"
|
"path": "./themes/one-light-italic.json"
|
||||||
},
|
}
|
||||||
{
|
]
|
||||||
"label": "Atom One Half Light",
|
},
|
||||||
"uiTheme": "vs",
|
"homepage": "https://git.isliberty.me/abby/vscode-theme-onelight",
|
||||||
"path": "./themes/one-half-light.json"
|
"repository": {
|
||||||
}
|
"type": "git",
|
||||||
]
|
"url": "https://git.isliberty.me/abby/vscode-theme-onelight"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/laggardkernel/vscode-theme-onelight",
|
"license": "MIT"
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/laggardkernel/vscode-theme-onelight"
|
|
||||||
},
|
|
||||||
"__metadata": {
|
|
||||||
"id": "0c29914e-b847-45ea-a032-6ce3ae71e4a9",
|
|
||||||
"publisherDisplayName": "laggardkernel",
|
|
||||||
"publisherId": "df70ce67-198f-4322-843a-96da0feb9b55"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
43
samples/jsx.jsx
Normal file
43
samples/jsx.jsx
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import React, { Component } from 'react';
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import { ThemeProvider } from 'emotion-theming';
|
||||||
|
|
||||||
|
import HintOfLace from './components/HintOfLace';
|
||||||
|
import theme from './theme';
|
||||||
|
|
||||||
|
class Fashion extends Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
this.state = {
|
||||||
|
knowFashion: false,
|
||||||
|
fashionIsFriend: false,
|
||||||
|
posing: 'like a swan',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
static propTypes = {
|
||||||
|
data: PropTypes.shape({
|
||||||
|
jazzercise: PropTypes.string.isRequired,
|
||||||
|
lipgloss: PropTypes.number.isRequired,
|
||||||
|
}).isRequired,
|
||||||
|
};
|
||||||
|
|
||||||
|
render() {
|
||||||
|
const { jazzercise, lipgloss } = this.props;
|
||||||
|
const { knowFashion, posing } = this.state;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider theme={theme}>
|
||||||
|
<h1>Hey! He-hey-hey! Hey!</h1>
|
||||||
|
<HintOfLace
|
||||||
|
lipgloss={lipgloss}
|
||||||
|
posing={posing}
|
||||||
|
knowFashion={knowFashion}
|
||||||
|
jazzercise={jazzercise}
|
||||||
|
/>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Fashion;
|
||||||
@ -1,697 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
||||||
<!-- Generated by: TmTheme-Editor -->
|
|
||||||
<!-- ============================================ -->
|
|
||||||
<!-- app: http://tmtheme-editor.herokuapp.com -->
|
|
||||||
<!-- code: https://github.com/aziz/tmTheme-Editor -->
|
|
||||||
<plist version="1.0">
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>OneHalfLight</string>
|
|
||||||
<key>semanticClass</key>
|
|
||||||
<string>theme.light.one_half_light</string>
|
|
||||||
<key>uuid</key>
|
|
||||||
<string></string>
|
|
||||||
<key>colorSpaceName</key>
|
|
||||||
<string>sRGB</string>
|
|
||||||
<key>author</key>
|
|
||||||
<string>Son A. Pham <sp@sonpham.me></string>
|
|
||||||
<key>comment</key>
|
|
||||||
<string>A light iTerm color scheme based on Atom's One. See github.com/sonph/onehalf for installation instructions, a dark color scheme, and versions for other editors/terminals such as (Neo)Vim and Sublime Text.</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<array>
|
|
||||||
<dict>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>fontStyle</key>
|
|
||||||
<string></string>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#383a42</string>
|
|
||||||
<key>background</key>
|
|
||||||
<string>#fafafa</string>
|
|
||||||
<key>bracketsOptions</key>
|
|
||||||
<string>underline</string>
|
|
||||||
<key>caret</key>
|
|
||||||
<string>#383a42</string>
|
|
||||||
<key>gutter</key>
|
|
||||||
<string>#fafafa</string>
|
|
||||||
<key>gutterForeground</key>
|
|
||||||
<string>#d4d4d4</string>
|
|
||||||
<key>invisibles</key>
|
|
||||||
<string>#a0a1a7</string>
|
|
||||||
<key>lineHighlight</key>
|
|
||||||
<string>#f0f0f0</string>
|
|
||||||
<key>selection</key>
|
|
||||||
<string>#bfceff</string>
|
|
||||||
<key>selectionBorder</key>
|
|
||||||
<string>#bfceff</string>
|
|
||||||
<key>tagsForeground</key>
|
|
||||||
<string></string>
|
|
||||||
<key>tagsOptions</key>
|
|
||||||
<string>stippled_underline</string>
|
|
||||||
<key>bracketContentsOptions</key>
|
|
||||||
<string>underline</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Comments</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>comment</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#a0a1a7</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Text</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>variable.parameter.function</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#383a42</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Delimiters</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>none</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string></string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Operators</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>keyword.operator</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string></string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Keywords</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>keyword</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#a626a4</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Variables</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>variable</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#e45649</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Functions</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>entity.name.function, meta.require, support.function.any-method</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#0184bc</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Classes</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>support.class, entity.name.class, entity.name.type.class</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#c18401</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Classes</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>meta.class</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#c18401</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Methods</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>keyword.other.special-method</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#0184bc</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Storage</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>storage</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#a626a4</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Support</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>support.function</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#0184bc</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Strings, Inherited Class</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>string</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#50a14f</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Integers</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>constant.numeric</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#c18401</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Floats</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>none</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#c18401</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Boolean</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>none</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#c18401</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Constants</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>constant</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#c18401</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>HTML: Tags</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>entity.name.tag</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#e45649</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>HTML: Tag attributes</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>entity.other.attribute-name</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#c18401</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Attribute IDs</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>entity.other.attribute-name.id, punctuation.definition.entity</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#c18401</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Selector</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>meta.selector</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#a626a4</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Markdown: Headings</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>markup.heading punctuation.definition.heading, entity.name.section</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>fontStyle</key>
|
|
||||||
<string></string>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#0184bc</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Markdown: Bold</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>markup.bold, punctuation.definition.bold</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#a626a4</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Markdown: Italic</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>markup.italic, punctuation.definition.italic</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#a626a4</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Markdown: Code</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>markup.raw.inline</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#50a14f</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Markdown: Link Text</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>string.other.link, punctuation.definition.string.end.markdown</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string></string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Markdown: Link Url</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>meta.link</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#50a14f</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Markdown: Lists</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>markup.list</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string></string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Markdown: Quotes</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>markup.quote</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#50a14f</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Java Source</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.java meta.class.java meta.method.java</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#383a42</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Java Class Body</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.java meta.class.java meta.class.body.java</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#383a42</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Javascript: Function Arguments</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.js meta.function.js variable.parameter.function.js</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#e45649</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Javascript: New Variables</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.js variable.other.readwrite.js</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#e45649</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Javascript: Variables</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.js variable.other.object.js</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#383a42</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Javascript: Variables in Function Calls</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.js meta.function-call.method.js variable.other.readwrite.js</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#e45649</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Javascript: New Block Variables</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.js meta.block.js variable.other.readwrite.js</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#e45649</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Javascript: Block Variables</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.js meta.block.js variable.other.object.js</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#383a42</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Javascript: Block Variables in Function Calls</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.js meta.block.js meta.function-call.method.js variable.other.readwrite.js</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#383a42</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Javascript: Function Calls</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.js meta.function-call.method.js variable.function.js</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#383a42</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Javascript: Properties</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.js meta.property.object.js entity.name.function.js</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#0184bc</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Javascript: Prototypes</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>source.js support.constant.prototype.js</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#383a42</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Separator</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>meta.separator</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>background</key>
|
|
||||||
<string></string>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string></string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Inserted</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>markup.inserted</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#98c379</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Deleted</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>markup.deleted</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#e06c75</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Changed</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>markup.changed</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#e5c07b</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Regular Expressions</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>string.regexp</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#50a14f</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Escape Characters</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>constant.character.escape</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#0997b3</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Embedded</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>punctuation.section.embedded, variable.interpolation</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string></string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Illegal</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>invalid.illegal</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>background</key>
|
|
||||||
<string>#e06c75</string>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#fafafa</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Broken</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>invalid.broken</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>background</key>
|
|
||||||
<string>#e5c07b</string>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#fafafa</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Deprecated</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>invalid.deprecated</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>background</key>
|
|
||||||
<string>#e5c07b</string>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#fafafa</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Unimplemented</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>invalid.unimplemented</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>background</key>
|
|
||||||
<string>#c678dd</string>
|
|
||||||
<key>foreground</key>
|
|
||||||
<string>#fafafa</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>Italic</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>
|
|
||||||
markup.italic,
|
|
||||||
punctuation.definition.italic,
|
|
||||||
comment,
|
|
||||||
punctuation.definition.comment,
|
|
||||||
string.comment,
|
|
||||||
comment.block.documentation,
|
|
||||||
comment.block.documentation variable,
|
|
||||||
comment.block.documentation punctuation.definition,
|
|
||||||
keyword.other.documentation,
|
|
||||||
storage.type.class.jsdoc,
|
|
||||||
comment.block,
|
|
||||||
comment.block variable.parameter,
|
|
||||||
keyword.other.phpdoc,
|
|
||||||
comment.block.documentation entity.name.type,
|
|
||||||
keyword,
|
|
||||||
keyword.operator.expression,
|
|
||||||
keyword.operator.new,
|
|
||||||
variable.language,
|
|
||||||
markup.quote,
|
|
||||||
markup.inserted,
|
|
||||||
markup.deleted,
|
|
||||||
markup.changed,
|
|
||||||
storage,
|
|
||||||
constant.language,
|
|
||||||
entity.name.class,
|
|
||||||
entity.other.attribute-name
|
|
||||||
</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>fontStyle</key>
|
|
||||||
<string>italic</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
|
||||||
<key>name</key>
|
|
||||||
<string>No Italic</string>
|
|
||||||
<key>scope</key>
|
|
||||||
<string>
|
|
||||||
keyword.operator,
|
|
||||||
keyword.other.unit,
|
|
||||||
support.type.property-name,
|
|
||||||
keyword.other.special-method,
|
|
||||||
entity.name.tag
|
|
||||||
</string>
|
|
||||||
<key>settings</key>
|
|
||||||
<dict>
|
|
||||||
<key>fontStyle</key>
|
|
||||||
<string>normal</string>
|
|
||||||
</dict>
|
|
||||||
</dict>
|
|
||||||
</array>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
||||||
@ -1,181 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "One Half Light Italic",
|
|
||||||
"type": "light",
|
|
||||||
"colors": {
|
|
||||||
"focusBorder": "#0366d6",
|
|
||||||
"foreground": "#24292e",
|
|
||||||
"descriptionForeground": "#6a737d",
|
|
||||||
"errorForeground": "#cb2431",
|
|
||||||
"textLink.foreground": "#0366d6",
|
|
||||||
"textLink.activeForeground": "#0366d6",
|
|
||||||
"textBlockQuote.background": "#f6f8fa",
|
|
||||||
"textBlockQuote.border": "#dfe2e5",
|
|
||||||
"textCodeBlock.background": "#1b1f230d",
|
|
||||||
"textPreformat.foreground": "#586069",
|
|
||||||
"textSeparator.foreground": "#eaecef",
|
|
||||||
"button.background": "#2ea44f",
|
|
||||||
"button.foreground": "#fafafa",
|
|
||||||
"button.hoverBackground": "#2c974b",
|
|
||||||
"button.secondaryBackground": "#eaecef",
|
|
||||||
"button.secondaryForeground": "#24292e",
|
|
||||||
"button.secondaryHoverBackground": "#f3f4f6",
|
|
||||||
"checkbox.background": "#f6f8fa",
|
|
||||||
"checkbox.border": "#e1e4e8",
|
|
||||||
"dropdown.background": "#fafafa",
|
|
||||||
"dropdown.border": "#e1e4e8",
|
|
||||||
"dropdown.foreground": "#24292e",
|
|
||||||
"dropdown.listBackground": "#fafafa",
|
|
||||||
"input.background": "#fafafa",
|
|
||||||
"input.border": "#e1e4e8",
|
|
||||||
"input.foreground": "#24292e",
|
|
||||||
"input.placeholderForeground": "#6a737d",
|
|
||||||
"badge.foreground": "#005cc5",
|
|
||||||
"badge.background": "#dbedff",
|
|
||||||
"progressBar.background": "#2188ff",
|
|
||||||
"titleBar.activeForeground": "#586069",
|
|
||||||
"titleBar.activeBackground": "#fafafa",
|
|
||||||
"titleBar.inactiveForeground": "#6a737d",
|
|
||||||
"titleBar.inactiveBackground": "#f6f8fa",
|
|
||||||
"titleBar.border": "#e1e4e8",
|
|
||||||
"activityBar.foreground": "#24292e",
|
|
||||||
"activityBar.inactiveForeground": "#6a737d",
|
|
||||||
"activityBar.background": "#fafafa",
|
|
||||||
"activityBarBadge.foreground": "#fafafa",
|
|
||||||
"activityBarBadge.background": "#2188ff",
|
|
||||||
"activityBar.activeBorder": "#f9826c",
|
|
||||||
"activityBar.border": "#e1e4e8",
|
|
||||||
"sideBar.foreground": "#24292e",
|
|
||||||
"sideBar.background": "#f6f8fa",
|
|
||||||
"sideBar.border": "#e1e4e8",
|
|
||||||
"sideBarTitle.foreground": "#24292e",
|
|
||||||
"sideBarSectionHeader.foreground": "#24292e",
|
|
||||||
"sideBarSectionHeader.background": "#f6f8fa",
|
|
||||||
"sideBarSectionHeader.border": "#e1e4e8",
|
|
||||||
"list.hoverForeground": "#24292e",
|
|
||||||
"list.inactiveSelectionForeground": "#24292e",
|
|
||||||
"list.activeSelectionForeground": "#24292e",
|
|
||||||
"list.hoverBackground": "#ebf0f4",
|
|
||||||
"list.inactiveSelectionBackground": "#e8eaed",
|
|
||||||
"list.activeSelectionBackground": "#e2e5e9",
|
|
||||||
"list.focusForeground": "#05264c",
|
|
||||||
"list.focusBackground": "#cce5ff",
|
|
||||||
"list.inactiveFocusBackground": "#dbedff",
|
|
||||||
"list.highlightForeground": "#0366d6",
|
|
||||||
"tree.indentGuidesStroke": "#eaecef",
|
|
||||||
"notificationCenterHeader.foreground": "#6a737d",
|
|
||||||
"notificationCenterHeader.background": "#e1e4e8",
|
|
||||||
"notifications.foreground": "#586069",
|
|
||||||
"notifications.background": "#fafbfc",
|
|
||||||
"notifications.border": "#e1e4e8",
|
|
||||||
"notificationsErrorIcon.foreground": "#d73a49",
|
|
||||||
"notificationsWarningIcon.foreground": "#e36209",
|
|
||||||
"notificationsInfoIcon.foreground": "#005cc5",
|
|
||||||
"pickerGroup.border": "#e1e4e8",
|
|
||||||
"pickerGroup.foreground": "#586069",
|
|
||||||
"quickInput.background": "#fafbfc",
|
|
||||||
"quickInput.foreground": "#24292e",
|
|
||||||
"statusBar.foreground": "#586069",
|
|
||||||
"statusBar.background": "#fafafa",
|
|
||||||
"statusBar.border": "#e1e4e8",
|
|
||||||
"statusBar.noFolderBackground": "#fafafa",
|
|
||||||
"statusBar.debuggingBackground": "#d73a49",
|
|
||||||
"statusBar.debuggingForeground": "#fafafa",
|
|
||||||
"statusBarItem.prominentBackground": "#f6f8fa",
|
|
||||||
"editorGroupHeader.tabsBackground": "#f6f8fa",
|
|
||||||
"editorGroupHeader.tabsBorder": "#e1e4e8",
|
|
||||||
"editorGroup.border": "#e1e4e8",
|
|
||||||
"tab.activeForeground": "#24292e",
|
|
||||||
"tab.inactiveForeground": "#6a737d",
|
|
||||||
"tab.inactiveBackground": "#f6f8fa",
|
|
||||||
"tab.activeBackground": "#fafafa",
|
|
||||||
"tab.hoverBackground": "#fafafa",
|
|
||||||
"tab.unfocusedHoverBackground": "#f6f8fa",
|
|
||||||
"tab.border": "#e1e4e8",
|
|
||||||
"tab.unfocusedActiveBorderTop": "#e1e4e8",
|
|
||||||
"tab.activeBorder": "#fafafa",
|
|
||||||
"tab.unfocusedActiveBorder": "#fafafa",
|
|
||||||
"tab.activeBorderTop": "#f9826c",
|
|
||||||
"breadcrumb.foreground": "#6a737d",
|
|
||||||
"breadcrumb.focusForeground": "#24292e",
|
|
||||||
"breadcrumb.activeSelectionForeground": "#586069",
|
|
||||||
"breadcrumbPicker.background": "#fafafa",
|
|
||||||
"editor.foreground": "#24292e",
|
|
||||||
"editor.background": "#fafafa",
|
|
||||||
"editorWidget.background": "#fafafa",
|
|
||||||
"editor.foldBackground": "#959da51a",
|
|
||||||
"editor.lineHighlightBackground": "#fafbfc",
|
|
||||||
"editorLineNumber.foreground": "#959da5",
|
|
||||||
"editorLineNumber.activeForeground": "#24292e",
|
|
||||||
"editorIndentGuide.background": "#eaecef",
|
|
||||||
"editorIndentGuide.activeBackground": "#e1e4e8",
|
|
||||||
"editorWhitespace.foreground": "#d1d5da",
|
|
||||||
"editorCursor.foreground": "#044289",
|
|
||||||
"editor.findMatchBackground": "#ffdf5d",
|
|
||||||
"editor.findMatchHighlightBackground": "#ffdf5d66",
|
|
||||||
"editor.linkedEditingBackground": "#0366d611",
|
|
||||||
"editor.inactiveSelectionBackground": "#0366d611",
|
|
||||||
"editor.selectionBackground": "#0366d625",
|
|
||||||
"editor.selectionHighlightBackground": "#34d05840",
|
|
||||||
"editor.selectionHighlightBorder": "#34d05800",
|
|
||||||
"editor.wordHighlightBackground": "#34d05800",
|
|
||||||
"editor.wordHighlightStrongBackground": "#34d05800",
|
|
||||||
"editor.wordHighlightBorder": "#24943e99",
|
|
||||||
"editor.wordHighlightStrongBorder": "#24943e50",
|
|
||||||
"editorBracketMatch.background": "#34d05840",
|
|
||||||
"editorBracketMatch.border": "#34d05800",
|
|
||||||
"editorGutter.modifiedBackground": "#f9c513",
|
|
||||||
"editorGutter.addedBackground": "#34d058",
|
|
||||||
"editorGutter.deletedBackground": "#d73a49",
|
|
||||||
"diffEditor.insertedTextBackground": "#85e89d33",
|
|
||||||
"diffEditor.removedTextBackground": "#f9758326",
|
|
||||||
"scrollbar.shadow": "#6a737d33",
|
|
||||||
"scrollbarSlider.background": "#959da533",
|
|
||||||
"scrollbarSlider.hoverBackground": "#959da544",
|
|
||||||
"scrollbarSlider.activeBackground": "#959da588",
|
|
||||||
"editorOverviewRuler.border": "#fafafa",
|
|
||||||
"panel.background": "#f6f8fa",
|
|
||||||
"panel.border": "#e1e4e8",
|
|
||||||
"panelTitle.activeBorder": "#f9826c",
|
|
||||||
"panelTitle.activeForeground": "#24292e",
|
|
||||||
"panelTitle.inactiveForeground": "#6a737d",
|
|
||||||
"panelInput.border": "#e1e4e8",
|
|
||||||
"terminal.foreground": "#383a42",
|
|
||||||
"terminal.background": "#fafafa",
|
|
||||||
"terminal.selectionForeground": "#383a42",
|
|
||||||
"terminal.selectionBackground": "#bfceff",
|
|
||||||
"terminalCursor.foreground": "#cc00be",
|
|
||||||
"terminal.border": "#657b83",
|
|
||||||
"terminal.ansiBlack": "#383a42",
|
|
||||||
"terminal.ansiRed": "#e45649",
|
|
||||||
"terminal.ansiGreen": "#50a14f",
|
|
||||||
"terminal.ansiYellow": "#c18401",
|
|
||||||
"terminal.ansiBlue": "#2f5af3",
|
|
||||||
"terminal.ansiMagenta": "#a626a4",
|
|
||||||
"terminal.ansiCyan": "#00b7eb",
|
|
||||||
"terminal.ansiWhite": "#fafafa",
|
|
||||||
"terminal.ansiBrightBlack": "#797979",
|
|
||||||
"terminal.ansiBrightRed": "#e06c75",
|
|
||||||
"terminal.ansiBrightGreen": "#98c379",
|
|
||||||
"terminal.ansiBrightYellow": "#e5c07b",
|
|
||||||
"terminal.ansiBrightBlue": "#4b72ff",
|
|
||||||
"terminal.ansiBrightMagenta": "#c678dd",
|
|
||||||
"terminal.ansiBrightCyan": "#00b7eb",
|
|
||||||
"terminal.ansiBrightWhite": "#fafafa",
|
|
||||||
"gitDecoration.addedResourceForeground": "#22863a",
|
|
||||||
"gitDecoration.modifiedResourceForeground": "#b08800",
|
|
||||||
"gitDecoration.deletedResourceForeground": "#cb2431",
|
|
||||||
"gitDecoration.untrackedResourceForeground": "#22863a",
|
|
||||||
"gitDecoration.ignoredResourceForeground": "#959da5",
|
|
||||||
"gitDecoration.conflictingResourceForeground": "#b08800",
|
|
||||||
"gitDecoration.submoduleResourceForeground": "#586069",
|
|
||||||
"debugToolBar.background": "#fafafa",
|
|
||||||
"editor.stackFrameHighlightBackground": "#ffd33d33",
|
|
||||||
"editor.focusedStackFrameHighlightBackground": "#28a74525",
|
|
||||||
"settings.headerForeground": "#586069",
|
|
||||||
"settings.modifiedItemIndicator": "#f9c513",
|
|
||||||
"welcomePage.buttonBackground": "#fafbfc",
|
|
||||||
"welcomePage.buttonHoverBackground": "#f3f4f6"
|
|
||||||
},
|
|
||||||
"semanticHighlighting": true,
|
|
||||||
"tokenColors": "./one-half-light-italic.tmTheme"
|
|
||||||
}
|
|
||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "One Light Italic",
|
"name": "One Half Light Italic",
|
||||||
"type": "light",
|
"type": "light",
|
||||||
"colors": {
|
"colors": {
|
||||||
"focusBorder": "#0366d6",
|
"focusBorder": "#0366d6",
|
||||||
@ -338,7 +338,7 @@
|
|||||||
<key>settings</key>
|
<key>settings</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>foreground</key>
|
<key>foreground</key>
|
||||||
<string>#4078F2</string>
|
<string>#0184bc</string>
|
||||||
</dict>
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
<dict>
|
<dict>
|
||||||
@ -430,7 +430,7 @@
|
|||||||
<key>settings</key>
|
<key>settings</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>foreground</key>
|
<key>foreground</key>
|
||||||
<string>#4078F2</string>
|
<string>#0184bc</string>
|
||||||
</dict>
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
<dict>
|
<dict>
|
||||||
@ -441,7 +441,7 @@
|
|||||||
<key>settings</key>
|
<key>settings</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>foreground</key>
|
<key>foreground</key>
|
||||||
<string>#4078F2</string>
|
<string>#0184bc</string>
|
||||||
</dict>
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
<dict>
|
<dict>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user