-
Notifications
You must be signed in to change notification settings - Fork 76
Color
Vinicius Reif Biavatti edited this page Sep 16, 2019
·
13 revisions
There are two different colors types for tui applications: 255
colors and 168
colors. These are the same colors used in MS-DOS applications, except the orange color thats was added just for this framework as a plus color. The framework provides many usefull classes to change the color style of the elements. Check the color structure class and the color table below.
These are the base color tables. These are used for styling texts, borders, hovered effects, etc. Replace <color>
marks for the other styles by some color of these tables below.
168 (A8) Colors:
Color | Rgb | Hex |
---|---|---|
.black-168 |
0, 0, 0 | #000000 |
.blue-168 |
0, 0, 168 | #0000A8 |
.green-168 |
0, 168, 0 | #00A800 |
.cyan-168 |
0, 168, 168 | #00A8A8 |
.red-168 |
168, 0, 0 | #A80000 |
.purple-168 |
168, 0, 168 | #A800A8 |
.yellow-168 |
168, 168, 0 | #A8A800 |
.white-168 |
168, 168, 168 | #A8A8A8 |
.orange-168 |
168, 86, 0 | #A85600 |
255 (FF) Colors:
Color | Rgb | Hex |
---|---|---|
.black-255 |
0, 0, 0 | #000000 |
.blue-255 |
0, 0, 255 | #0000FF |
.green-255 |
0, 255, 0 | #00FF00 |
.cyan-255 |
0, 255, 255 | #00FFFF |
.red-255 |
255, 0, 0 | #FF0000 |
.purple-255 |
255, 0, 255 | #FF00FF |
.yellow-255 |
255, 255, 0 | #FFFF00 |
.white-255 |
255, 255, 255 | #FFFFFF |
.orange-255 |
255, 168, 0 | #FFA800 |
Copyright © 2022 Vinícius Reif Biavatti
- Home
- Getting Started
- Examples
- Custom Theme
- Contributing
- Showcase
- Components
- Styles