File: test_2.py

package info (click to toggle)
colored 2.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 240 kB
  • sloc: python: 2,064; makefile: 4
file content (26 lines) | stat: -rw-r--r-- 652 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
# -*- coding: utf-8 -*-

""" Test foreground and background colors """

from colored.library import Library
from colored import fore, back, style


def main():

    # Prints foreground colors
    for name in Library.COLORS.keys():
        print(f"{fore(name)}{name:>3}{style('reset')}", end='  ')

    # Prints background colors
    for name in Library.COLORS.keys():
        print(f"{style(4, name)}{back(name)}{name:>3}{style('reset')}", end='  ')

    # Prints underline with colors
    for name in Library.COLORS.keys():
        print(f"{style(4, name)}{name:>3}{style(59)}", end='  ')


if __name__ == '__main__':
    main()