46 lines
1.0 KiB
Lua
46 lines
1.0 KiB
Lua
local colors = {
|
|
foreground = '#f8f8f2',
|
|
background = '#282a36',
|
|
cursor_bg = '#f8f8f2',
|
|
cursor_fg = '#282a36',
|
|
cursor_border = '#f8f8f2',
|
|
selection_bg = '#44475a',
|
|
selection_fg = '#f8f8f2',
|
|
compose_cursor = '#f8f8f2',
|
|
ansi = {
|
|
'#21222c',
|
|
'#ff5555',
|
|
'#50fa7b',
|
|
'#f1fa8c',
|
|
'#bd93f9',
|
|
'#ff79c6',
|
|
'#8be9fd',
|
|
'#f8f8f2',
|
|
},
|
|
brights = {
|
|
'#6272a4',
|
|
'#ff6e6e',
|
|
'#69ff94',
|
|
'#ffffa5',
|
|
'#d6acff',
|
|
'#ff92df',
|
|
'#a4ffff',
|
|
'#ffffff',
|
|
},
|
|
tab_bar = {
|
|
background = '#21222c',
|
|
active_tab = { bg_color = '#bd93f9', fg_color = '#282a36', intensity = 'Bold' },
|
|
inactive_tab = { bg_color = '#21222c', fg_color = '#f8f8f2' },
|
|
inactive_tab_hover = { bg_color = '#44475a', fg_color = '#f8f8f2' },
|
|
new_tab = { bg_color = '#21222c', fg_color = '#50fa7b' },
|
|
new_tab_hover = { bg_color = '#44475a', fg_color = '#f8f8f2' },
|
|
},
|
|
}
|
|
|
|
return {
|
|
name = 'dracula',
|
|
label = 'DRACULA',
|
|
colors = colors,
|
|
window_background_opacity = 1.0,
|
|
cursor_blink_rate = 500,
|
|
} |