Skip to content

Commit

Permalink
chore: generate extras
Browse files Browse the repository at this point in the history
  • Loading branch information
byt3m4st3r committed Jul 24, 2024
1 parent b90fdf2 commit 1bea0e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions extras/rio/cyberdream-light.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ selection-background = '#eaeaea'

# Dim colors
dim-black = '#eeeeee'
dim-blue = '${blueDim}'
dim-blue = '#3278da'
dim-cyan = '${cyanDim}'
dim-foreground = '${fgDim}'
dim-green = '${greenDim}'
Expand All @@ -31,7 +31,7 @@ dim-yellow = '${yellowDim}'

# Light colors
light-black = '${bgAltLight}'
light-blue = '${blueLight}'
light-blue = '#11243e'
light-cyan = '${cyanLight}'
light-foreground = '${fgLight}'
light-green = '${greenLight}'
Expand Down
4 changes: 2 additions & 2 deletions extras/rio/cyberdream.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ selection-background = '#1e2124'

# Dim colors
dim-black = '#1c1f22'
dim-blue = '${blueDim}'
dim-blue = '#4f85d1'
dim-cyan = '${cyanDim}'
dim-foreground = '${fgDim}'
dim-green = '${greenDim}'
Expand All @@ -31,7 +31,7 @@ dim-yellow = '${yellowDim}'

# Light colors
light-black = '${bgAltLight}'
light-blue = '${blueLight}'
light-blue = '#deecff'
light-cyan = '${cyanLight}'
light-foreground = '${fgLight}'
light-green = '${greenLight}'
Expand Down
2 changes: 1 addition & 1 deletion lua/cyberdream/extra/rio.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function M.generate(variant)
local modified_colors = vim.fn.copy(colors[variant])
modified_colors.bgAltDim = util.darken(colors[variant].bgAlt, 0.8, colors[variant].bg)
modified_colors.blueDim = util.darken(colors[variant].blue, 0.8, colors[variant].bg)
modified_colors.blueLight = util.lighten(colors[variant].blue, 0.2, colors[variant].fg)
modified_colors.blueLight = util.lighten(colors[variant].blue, 0.8, colors[variant].fg)

local template = [==[
[colors]
Expand Down

0 comments on commit 1bea0e6

Please sign in to comment.