/* * Copyright (c) 2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Gfx { struct TextAttributes { Color color; Optional background_color; bool underline { false }; bool bold { false }; }; }