File: test_3.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 (22 lines) | stat: -rw-r--r-- 465 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
#!/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():

    for name in Library.HEX_COLORS.values():
        print(f"{fore(name)}{name:>3}", end='  ')

    for name in Library.HEX_COLORS.values():
        print(f"{back(name)}{name:>3}", end='  ')

    print(style('reset'))  # Reset all attributes


if __name__ == '__main__':
    main()