blob: 5b3ffe57fa27d36f4ea84c266d392efbd860a341 [file] [log] [blame]
// Copyright 2016 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "authpolicy/log_colors.h"
namespace authpolicy {
// Other useful colors: light gray=37, white=97
constexpr char kColorReset[] = "\033[0m";
constexpr char kColorCommand[] = "\033[31m"; // Red
constexpr char kColorCommandStdout[] = "\033[33m"; // Yellow
constexpr char kColorCommandStderr[] = "\033[35m"; // Magenta
constexpr char kColorKinitTrace[] = "\033[36m"; // Cyan
constexpr char kColorPolicy[] = "\033[34m"; // Blue
constexpr char kColorGpo[] = "\033[32m"; // Green
constexpr char kColorFlags[] = "\033[90m"; // Dark gray
constexpr char kColorRequest[] = "\033[41;1;97m"; // Bold white on red
} // namespace authpolicy