chromium/chrome/browser/hub/android/java/src/org/chromium/chrome/browser/hub/HubColorScheme.java

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.chrome.browser.hub;

import androidx.annotation.IntDef;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@IntDef({HubColorScheme.DEFAULT, HubColorScheme.INCOGNITO})
@Retention(RetentionPolicy.SOURCE)
public @interface HubColorScheme {
    /** Standard adaptive colors. Could be day or night mode. */
    int DEFAULT = 0;

    /** Incognito theme. */
    int INCOGNITO = 1;
}