Skip to content

Different color of status bar in private session #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions draw.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
def blood(c, options = {}):
palette = {
'background': '#282a36',
'background-alt': '#282a36',
'background-alt': '#282a36',
'background-attention': '#181920',
'border': '#282a36',
'current-line': '#44475a',
Expand All @@ -17,7 +17,7 @@ def blood(c, options = {}):
'purple': '#bd93f9',
'red': '#ff5555',
'yellow': '#f1fa8c'
}
}

spacing = options.get('spacing', {
'vertical': 5,
Expand Down Expand Up @@ -174,7 +174,7 @@ def blood(c, options = {}):
c.colors.statusbar.command.fg = palette['pink']

## Background color of the statusbar in private browsing + command mode.
c.colors.statusbar.command.private.bg = palette['background']
c.colors.statusbar.command.private.bg = palette['background-attention']

## Foreground color of the statusbar in private browsing + command mode.
c.colors.statusbar.command.private.fg = palette['foreground-alt']
Expand All @@ -198,7 +198,7 @@ def blood(c, options = {}):
c.colors.statusbar.passthrough.fg = palette['orange']

## Background color of the statusbar in private browsing mode.
c.colors.statusbar.private.bg = palette['background-alt']
c.colors.statusbar.private.bg = palette['background-attention']

## Foreground color of the statusbar in private browsing mode.
c.colors.statusbar.private.fg = palette['foreground-alt']
Expand Down