How to use the sty.renderer function in sty

To help you get started, we’ve selected a few sty examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github feluxe / sty / sty / register / __init__.py View on Github external
def eightbit(self, *args):
        return renderer.eightbit_bg(*args)
github feluxe / sty / sty / register / __init__.py View on Github external
def _num_call(self, num):
        return renderer.eightbit_fg(*num)
github feluxe / sty / sty / register / __init__.py View on Github external
def _rgb_call(self, *args):
        return renderer.rgb_bg(*args)
github feluxe / sty / sty / register / __init__.py View on Github external
def rgb(self, *args):
        return renderer.rgb_fg(*args)
github feluxe / sty / sty / register / __init__.py View on Github external
def sgr(self, num):
        return renderer.sgr(num)