fixup! Rework solarized
This commit is contained in:
parent
be924e6c87
commit
8c72e2ed3a
1 changed files with 36 additions and 32 deletions
|
|
@ -105,39 +105,43 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
colors = {
|
colors =
|
||||||
common = {
|
let
|
||||||
"output.header" = "bold ${solarized.green.hex}";
|
c = solarized.colors;
|
||||||
"sql.datatype" = "nobold ${solarized.yellow.hex}";
|
in
|
||||||
"sql.function" = "bold ${solarized.violet.hex}";
|
{
|
||||||
"sql.keyword" = solarized.green.hex;
|
common = {
|
||||||
"sql.literal" = solarized.green.hex;
|
"output.header" = "bold ${c.green}";
|
||||||
"sql.number" = solarized.cyan.hex;
|
"sql.datatype" = "nobold ${c.yellow}";
|
||||||
"sql.string" = solarized.cyan.hex;
|
"sql.function" = "bold ${c.violet}";
|
||||||
"sql.variable" = solarized.red.hex;
|
"sql.keyword" = c.green;
|
||||||
"sql.quoted-schema-object" = solarized.blue.hex;
|
"sql.literal" = c.green;
|
||||||
|
"sql.number" = c.cyan;
|
||||||
|
"sql.string" = c.cyan;
|
||||||
|
"sql.variable" = c.red;
|
||||||
|
"sql.quoted-schema-object" = c.blue;
|
||||||
|
};
|
||||||
|
light = {
|
||||||
|
"prompt" = "bg:${c.blue} ${c.base02}";
|
||||||
|
"selected" = "bg:${c.base2} ${c.base00}";
|
||||||
|
"output.odd-row" = "${c.base01}";
|
||||||
|
"output.even-row" = "${c.base01} bg:${c.base2}";
|
||||||
|
"sql.comment" = "italic ${c.base1}";
|
||||||
|
"sql.operator" = "bold ${c.base02}";
|
||||||
|
"sql.punctuation" = "bold ${c.base01}";
|
||||||
|
"sql.symbol" = "${c.base01}";
|
||||||
|
};
|
||||||
|
dark = {
|
||||||
|
"prompt" = "bg:${c.blue} ${c.base2}";
|
||||||
|
"selected" = "bg:${c.base02} ${c.base0}";
|
||||||
|
"output.odd-row" = "${c.base1}";
|
||||||
|
"output.even-row" = "${c.base1} bg:${c.base02}";
|
||||||
|
"sql.comment" = "italic ${c.base01}";
|
||||||
|
"sql.operator" = "bold ${c.base2}";
|
||||||
|
"sql.punctuation" = "bold ${c.base1}";
|
||||||
|
"sql.symbol" = "${c.base1}";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
light = {
|
|
||||||
"prompt" = "bg:${solarized.blue.hex} ${solarized.base02.hex}";
|
|
||||||
"selected" = "bg:${solarized.base2.hex} ${solarized.base00.hex}";
|
|
||||||
"output.odd-row" = "${solarized.base01.hex}";
|
|
||||||
"output.even-row" = "${solarized.base01.hex} bg:${solarized.base2.hex}";
|
|
||||||
"sql.comment" = "italic ${solarized.base1.hex}";
|
|
||||||
"sql.operator" = "bold ${solarized.base02.hex}";
|
|
||||||
"sql.punctuation" = "bold ${solarized.base01.hex}";
|
|
||||||
"sql.symbol" = "${solarized.base01.hex}";
|
|
||||||
};
|
|
||||||
dark = {
|
|
||||||
"prompt" = "bg:${solarized.blue.hex} ${solarized.base2.hex}";
|
|
||||||
"selected" = "bg:${solarized.base02.hex} ${solarized.base0.hex}";
|
|
||||||
"output.odd-row" = "${solarized.base1.hex}";
|
|
||||||
"output.even-row" = "${solarized.base1.hex} bg:${solarized.base02.hex}";
|
|
||||||
"sql.comment" = "italic ${solarized.base01.hex}";
|
|
||||||
"sql.operator" = "bold ${solarized.base2.hex}";
|
|
||||||
"sql.punctuation" = "bold ${solarized.base1.hex}";
|
|
||||||
"sql.symbol" = "${solarized.base1.hex}";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
home.packages = [
|
home.packages = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue