Files
Sangwoo Ko 5fed582d7f Enable Brave Ultra Dark Theme flag by default (#33365)
We decided to enable this feature by default as of
now.
2026-01-29 09:05:11 +09:00

17 lines
612 B
C++

// Copyright (c) 2025 The Brave Authors. All rights reserved.
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.
#include "brave/browser/ui/darker_theme/features.h"
namespace darker_theme::features {
// Note that we're exposing the feature with the name "BraveUltraDarkTheme" for
// brand consistency
BASE_FEATURE(kBraveDarkerTheme,
"BraveUltraDarkTheme",
base::FEATURE_ENABLED_BY_DEFAULT);
} // namespace darker_theme::features