We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Store each custom colour scheme as a separate text file with a name matching (and defining) the scheme name. For example
"[{\"name\":\"My Look\",\"theme\":\"dark\",\"styles\":\"asgn=fg:#50fa7b com=fg:#6272a4 diam=fg:#ff79c6 err=fg:#ff5555,bgo:1 fn=fg:#8be9fd idm=U kw=fg:#ff79c6 lnum=bgo:0,fg:6272a4 mtch=bgo:0.5,fg:#f8f8f2,bg:#44475a …
should become
%HOMEPATH%\ride\46\ColSchemes\My Look.json
$HOME/Library/Preferences/ride/46/ColSchemes/My Look.json
$XDG_CONFIG_HOME/ride/46/ColSchemes/My Look.json
$XDG_CONFIG_HOME
$HOME/.config
and contain:
{ "chrome": "dark", "styles": { "asgn": { "fg": "#50fa7b" }, "com": { "fg": "#6272a4" }, "diam": { "fg": ":#ff79c6" }, "err": { "fg": "#ff5555", "bgo": 1 }, "fn": { "fg": "#8be9fd" }, "idm": { "U": true }, "kw": { "fg": "#ff79c6" }, "lnum": { "bgo": 0, "fg": "#6272a4" } "mtch": { "bgo": 0.5, "fg": "#f8f8f2", "bg": "#44475a" } …
Notes:
B
I
U
"B": true
#
rgb(10,20,30)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the issue you are having
Store each custom colour scheme as a separate text file with a name matching (and defining) the scheme name. For example
should become
%HOMEPATH%\ride\46\ColSchemes\My Look.json
$HOME/Library/Preferences/ride/46/ColSchemes/My Look.json
$XDG_CONFIG_HOME/ride/46/ColSchemes/My Look.json
If
$XDG_CONFIG_HOME
isn't set, default to$HOME/.config
and contain:
Notes:
B
,I
, andU
are currently not name:value pairs; they become"B": true
etc.#
can currently be omitted from hex codes; that should not be allowed. Instead, we can allow additional CSS colour specifications, e.g.rgb(10,20,30)
The text was updated successfully, but these errors were encountered: