#ifndef ASH_AUTH_VIEWS_AUTH_COMMON_H_
#define ASH_AUTH_VIEWS_AUTH_COMMON_H_
#include "ash/style/typography.h"
#include "base/containers/enum_set.h"
#include "ui/chromeos/styles/cros_tokens_color_mappings.h"
namespace ash {
enum class AuthInputType {
kPassword = 0,
kPin = 1,
kFingerprint = 2,
kMaxValue = kFingerprint
};
using AuthFactorSet = base::
EnumSet<AuthInputType, AuthInputType::kPassword, AuthInputType::kMaxValue>;
inline constexpr int kTextLineWidthDp = 322 - 2 * 32;
inline constexpr ui::ColorId kTextColorId = cros_tokens::kCrosSysOnSurface;
inline constexpr TypographyToken kTextFont = TypographyToken::kCrosAnnotation1;
}
#endif