Skip to content
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

Fix definition for bg and fg types #336

Open
wants to merge 1 commit 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
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,8 @@ The base element.
- __border__ - Border object.
- __type__ - Type of border (`line` or `bg`). `bg` by default.
- __ch__ - Character to use if `bg` type, default is space.
- __bg, fg__ - Border foreground and background, must be numbers (-1 for
default).
- __bg, fg__ - Border foreground and background, can be strings or numbers (-1 for
default). See [Colors](https://github.com/chjj/blessed#colors-1 "Colors").
- __bold, underline__ - Border attributes.
- __style__ - Contains attributes (e.g. `fg/bg/underline`). See above.
- __position__ - Raw width, height, and offsets.
Expand All @@ -520,7 +520,8 @@ The base element.
- __visible__ - Whether the element is visible or not.
- __detached__ - Whether the element is attached to a screen in its ancestry
somewhere.
- __fg, bg__ - Foreground and background, must be numbers (-1 for default).
- __fg, bg__ - Foreground and background, can be strings or numbers (-1 for
default). See [Colors](https://github.com/chjj/blessed#colors-1 "Colors").
- __bold, underline__ - Attributes.
- __width__ - Calculated width.
- __height__ - Calculated height.
Expand Down