// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_VIEWS_STYLE_TYPOGRAPHY_H_ #define UI_VIEWS_STYLE_TYPOGRAPHY_H_ namespace views::style { // Where a piece of text appears in the UI. This influences size and weight, but // typically not style or color. enum TextContext { … }; // How a piece of text should be presented. This influences color and style, but // typically not size. enum TextStyle { … }; } // namespace views::style #endif // UI_VIEWS_STYLE_TYPOGRAPHY_H_