blob: eb74d035f5b6a4659c5da15a7029d05db81c1590 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_ASSISTANT_UI_ASSISTANT_UI_CONSTANTS_H_
#define ASH_ASSISTANT_UI_ASSISTANT_UI_CONSTANTS_H_
#include "third_party/skia/include/core/SkColor.h"
#include "ui/gfx/color_palette.h"
namespace gfx {
class FontList;
} // namespace gfx
namespace ash {
// Appearance.
constexpr int kCornerRadiusDip = 20;
constexpr int kMiniUiCornerRadiusDip = 24;
constexpr int kMaxHeightDip = 640;
constexpr int kPaddingDip = 14;
constexpr int kPreferredWidthDip = 640;
constexpr int kSpacingDip = 8;
constexpr int kMarginDip = 8;
constexpr int kUiElementHorizontalMarginDip = 32;
// Typography.
constexpr SkColor kTextColorHint = gfx::kGoogleGrey700;
constexpr SkColor kTextColorPrimary = gfx::kGoogleGrey900;
// TODO(dmblack): Move the other constants into ash::assistant::ui.
namespace assistant {
namespace ui {
// Returns the default font list for Assistant UI.
const gfx::FontList& GetDefaultFontList();
} // namespace ui
} // namespace assistant
} // namespace ash
#endif // ASH_ASSISTANT_UI_ASSISTANT_UI_CONSTANTS_H_