".Xresources.erb" did not exist on "2271d32145565035bce3590e971d5265e16dc6b8"
Commit e2a237e0 authored by James T. Lee's avatar James T. Lee
Browse files

Xresources: Switch to dark theme

parent 3ed260c2
<% require 'colorscheme' <% require 'colorscheme'
dark = ColorScheme.dark dark = ColorScheme.dark
light = ColorScheme.light
gui_scaling_factor = @facts['scaling'] ? @facts['scaling']['gui'] : 1 gui_scaling_factor = @facts['scaling'] ? @facts['scaling']['gui'] : 1
light.terminal.each do |c| -%> dark.terminal.each do |c| -%>
*color<%= c.ansi %>: <%= c.x11 %> *color<%= c.ansi %>: <%= c.x11 %>
<% end -%> <% end -%>
*foreground: <%= light.colors_by_base[0x06].x11 %> *foreground: <%= dark.colors_by_base[0x06].x11 %>
*background: <%= light.colors_by_base[0x01].x11 %> *background: <%= dark.colors_by_base[0x01].x11 %>
*borderColor: <%= light.colors_by_base[0x03].x11 %> *borderColor: <%= dark.colors_by_base[0x03].x11 %>
<% dark.terminal.each do |c| -%> <% dark.terminal.each do |c| -%>
URxvt.color<%= c.ansi %>: <%= c.x11 %> URxvt.color<%= c.ansi %>: <%= c.x11 %>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment