fd519c825f
Change-Id: I73e91a0abeec013445d0b14867e38637b2a9397f Reviewed-on: https://cl.tvl.fyi/c/depot/+/5334 Reviewed-by: Profpatsch <mail@profpatsch.de> Tested-by: BuildkiteCI
37 lines
974 B
Text
37 lines
974 B
Text
let sol = (./solarized.dhall).hex
|
|
|
|
let solarized-dark =
|
|
{ --Colors (Solarized Dark)
|
|
colors =
|
|
{ -- Default colors
|
|
primary =
|
|
{ background = sol.base03, foreground = sol.base0 }
|
|
, -- Cursor colors
|
|
cursor =
|
|
{ text = sol.base03, cursor = sol.base0 }
|
|
, -- Normal colors
|
|
normal =
|
|
{ black = sol.base02
|
|
, red = sol.red
|
|
, green = sol.green
|
|
, yellow = sol.yellow
|
|
, blue = sol.blue
|
|
, magenta = sol.magenta
|
|
, cyan = sol.cyan
|
|
, white = sol.base2
|
|
}
|
|
, -- Bright colors
|
|
bright =
|
|
{ black = sol.base03
|
|
, red = sol.orange
|
|
, green = sol.base01
|
|
, yellow = sol.base00
|
|
, blue = sol.base0
|
|
, magenta = sol.violet
|
|
, cyan = sol.base1
|
|
, white = sol.base3
|
|
}
|
|
}
|
|
}
|
|
|
|
in { font.size = 12 } // solarized-dark
|