2020-05-15 02:58:56 +08:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
2020-10-23 00:45:48 +08:00
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
2020-05-15 02:58:56 +08:00
|
|
|
|
{
|
|
|
|
|
public static class ConfigDefaults
|
|
|
|
|
{
|
|
|
|
|
// Fancy Zones Default Colors
|
|
|
|
|
public static readonly string DefaultFancyZonesZoneHighlightColor = "#0078D7";
|
|
|
|
|
public static readonly string DefaultFancyZonesInActiveColor = "#F5FCFF";
|
|
|
|
|
public static readonly string DefaultFancyzonesBorderColor = "#FFFFFF";
|
2021-12-21 00:50:51 +08:00
|
|
|
|
public static readonly string DefaultFancyzonesNumberColor = "#000000";
|
2020-05-15 02:58:56 +08:00
|
|
|
|
|
|
|
|
|
// Fancy Zones Default Flags.
|
|
|
|
|
public static readonly bool DefaultFancyzonesShiftDrag = true;
|
|
|
|
|
public static readonly bool DefaultUseCursorposEditorStartupscreen = true;
|
2021-03-25 20:44:55 +08:00
|
|
|
|
public static readonly bool DefaultFancyzonesQuickLayoutSwitch = true;
|
|
|
|
|
public static readonly bool DefaultFancyzonesFlashZonesOnQuickSwitch = true;
|
2020-05-15 02:58:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|