blob: 1f07dbad778730cff301cb5706477976e8791a43 [file] [log] [blame]
#!/usr/bin/env fuchsia-vendored-python
# Copyright 2021 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Provides some basic helper functions for printing."""
def yellow(message: str) -> str:
return "\033[1;33;40m%s\033[0m" % (message)
def white(message: str) -> str:
return "\033[37;1;40m%s\033[0m" % (message)
def red(message: str) -> str:
return "\033[1;31;40m%s\033[0m" % (message)