-
-
Notifications
You must be signed in to change notification settings - Fork 115
elementary high contrast (light) stylescheme #1602
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jeremypw
wants to merge
15
commits into
master
Choose a base branch
from
jeremypw/custom-classic-stylescheme
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+188
−24
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
3a5254f
Trial elementary high contrast theme base on elementary-light
jeremypw b974fd4
Tweak for improved contrast
jeremypw a21c309
Further tweaks
jeremypw 5390270
Provide fallback for failure to get scheme or colors
jeremypw 921da27
Merge branch 'master' into jeremypw/custom-classic-stylescheme
jeremypw f904b7e
Merge branch 'master' into jeremypw/custom-classic-stylescheme
jeremypw d2d2db0
Merge branch 'master' into jeremypw/custom-classic-stylescheme
jeremypw 7b29697
Lint and other cleanup
jeremypw 7d830a0
Merge branch 'master' into jeremypw/custom-classic-stylescheme
zeebok 0bbfa58
Merge branch 'master' into jeremypw/custom-classic-stylescheme
jeremypw 3918bd0
Change cyan from BLUEBERRY500 to MINT900
jeremypw 57e8b94
Use silver for line number background
jeremypw 50203a2
Make comments more distinct
jeremypw 439a506
Merge branch 'master' into jeremypw/custom-classic-stylescheme
jeremypw e829187
Merge branch 'jeremypw/custom-classic-stylescheme' of https://github.…
jeremypw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,123 @@ | ||||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||||
|
|
||||||
| <style-scheme id="elementary-highcontrast-light" _name="elementary High Contrast Light" version="1.0"> | ||||||
| <author>Elementary Developers</author> | ||||||
| <_description>High Contrast color scheme using the elementary color palette</_description> | ||||||
|
|
||||||
| <!-- Background Colors Palette --> | ||||||
| <color name="bg-0" value="#abacae"/> <!-- SILVER700--> | ||||||
| <color name="bg-1" value="#d4d4d4"/> <!-- SILVER300--> | ||||||
| <color name="bg-2" value="#fafafa"/> <!-- SILVER100--> | ||||||
| <color name="bg-3" value="#EAEAEA"/> <!-- 50% SILVER300 + 50% WHITE | ||||||
|
|
||||||
| --> | ||||||
|
|
||||||
| <!--Foreground Colors Palette --> | ||||||
| <color name="fg-0" value="#000000"/> <!-- BLACK900 --> | ||||||
| <color name="fg-1" value="#1a1a1a"/> <!-- BLACK700 --> | ||||||
| <color name="fg-2" value="#abacae"/> <!-- SILVER500 --> | ||||||
|
|
||||||
| <!--Highlight Colors Palette --> | ||||||
| <color name="mud" value="#804b00"/> <!-- LATTE900 --> | ||||||
| <color name="latte" value="#e7c591"/> <!-- LATTE300 --> | ||||||
| <color name="yellow" value="#d48e15"/> <!-- BANANA700 --> | ||||||
| <color name="orange" value="#cc3b02"/> <!-- ORANGE700 --> | ||||||
| <color name="pink" value="#bc245d"/> <!-- BUBBLEGUM700 --> | ||||||
| <color name="purple" value="#452981"/> <!-- GRAPE900 --> | ||||||
| <color name="cyan" value="#007367"/> <!-- MINT900 --> | ||||||
| <color name="blue" value="#0d52bf"/> <!-- BLUEBERRY700 --> | ||||||
| <color name="lime" value="#68b723"/> <!-- LIME500 --> | ||||||
| <color name="green" value="#206b00"/> <!-- LIME900 --> | ||||||
| <color name="red" value="#FF0000"/> | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. red should probably use elementary palette as well. |
||||||
| <color name="black" value="#000000"/> | ||||||
|
|
||||||
|
|
||||||
| <!-- Global Settings --> | ||||||
| <style name="text" foreground="fg-0" background="bg-2"/> | ||||||
| <style name="selection" background="latte"/> | ||||||
| <style name="cursor" foreground="fg-0"/> | ||||||
| <style name="secondary-cursor" foreground="fg-1"/> | ||||||
| <style name="current-line" background="bg-1"/> | ||||||
| <style name="line-numbers" foreground="fg-1" background="bg-3"/> | ||||||
| <style name="background-pattern" background="bg-3"/> | ||||||
| <style name="draw-spaces" foreground="fg-2"/> | ||||||
|
|
||||||
| <!-- Bracket Matching --> | ||||||
| <style name="bracket-match" foreground="lime" background="bg-2" bold="true"/> | ||||||
| <style name="bracket-mismatch" foreground="red" background="fg-2" bold="true"/> | ||||||
|
|
||||||
| <!-- Right Margin --> | ||||||
| <style name="right-margin" foreground="bg-3" background="fg-1"/> | ||||||
|
|
||||||
| <!-- Search Matching --> | ||||||
| <style name="search-match" foreground="black" background="yellow"/> | ||||||
|
|
||||||
| <!-- Comments --> | ||||||
| <style name="def:comment" foreground="blue" italic="true"/> | ||||||
| <style name="def:shebang" foreground="fg-1" bold="true"/> | ||||||
| <style name="def:doc-comment-element" italic="true"/> | ||||||
|
|
||||||
| <!-- Constants --> | ||||||
| <style name="def:constant" foreground="cyan"/> | ||||||
| <style name="def:special-char" foreground="green"/> | ||||||
|
|
||||||
| <!-- Identifiers --> | ||||||
| <style name="def:identifier" foreground="blue" bold="true"/> | ||||||
|
|
||||||
| <!-- Statements --> | ||||||
| <style name="def:statement" foreground="orange"/> | ||||||
|
|
||||||
| <!-- Types --> | ||||||
| <style name="def:type" foreground="green" bold="true"/> | ||||||
| <style name="def:string" foreground="pink"/> | ||||||
| <style name="def:keyword" foreground="mud" bold="true"/> | ||||||
|
|
||||||
| <!-- Markup --> | ||||||
| <style name="def:emphasis" italic="true"/> | ||||||
| <style name="def:strong-emphasis" foreground="orange"/> | ||||||
| <style name="def:inline-code" foreground="blue"/> | ||||||
| <style name="def:insertion" underline="single"/> | ||||||
| <style name="def:deletion" strikethrough="true"/> | ||||||
| <style name="def:link-text" foreground="fg-1"/> | ||||||
| <style name="def:link-symbol" foreground="fg-1" bold="true"/> | ||||||
| <style name="def:link-destination" italic="true" underline="single"/> | ||||||
| <style name="def:heading" foreground="yellow"/> | ||||||
| <style name="def:thematic-break" foreground="yellow"/> | ||||||
| <style name="def:preformatted-section" foreground="blue"/> | ||||||
| <style name="def:list-marker" foreground="orange"/> | ||||||
|
|
||||||
| <!-- Operators --> | ||||||
| <style name="def:operator" foreground="lime" bold="true" /> | ||||||
|
|
||||||
| <!-- Others --> | ||||||
| <style name="def:preprocessor" foreground="purple"/> | ||||||
| <style name="def:error" foreground="red" bold="true"/> | ||||||
| <style name="def:note" foreground="pink" bold="true"/> | ||||||
| <style name="def:net-address" italic="true" underline="single"/> | ||||||
|
|
||||||
| <!-- Language specific styles --> | ||||||
| <style name="diff:added-line" foreground="green"/> | ||||||
| <style name="diff:removed-line" foreground="red"/> | ||||||
| <style name="diff:changed-line" foreground="yellow"/> | ||||||
| <style name="diff:special-case" use-style="def:constant"/> | ||||||
| <style name="diff:location" use-style="def:statement"/> | ||||||
| <style name="diff:diff-file" use-style="def:type"/> | ||||||
|
|
||||||
| <style name="xml:tags" foreground="cyan" bold="true"/> | ||||||
| <style name="xml:attribute-name" foreground="purple" bold="true"/> | ||||||
| <style name="xml:namespace" foreground="lime" bold="true"/> | ||||||
|
|
||||||
| <style name="js:built-in-constructor" use-style="def:identifier"/> | ||||||
|
|
||||||
| <style name="latex:display-math" foreground="purple"/> | ||||||
| <style name="latex:command" foreground="green" bold="true"/> | ||||||
| <style name="latex:include" use-style="def:preprocessor"/> | ||||||
|
|
||||||
| <style name="sh:variable" foreground="purple"/> | ||||||
|
|
||||||
| <!-- legacy styles for old lang files --> | ||||||
| <style name="Others" foreground="green" bold="true"/> | ||||||
| <style name="Others 2" foreground="cyan"/> | ||||||
| <style name="Others 3" foreground="purple"/> | ||||||
|
|
||||||
| </style-scheme> | ||||||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: extra spaces