mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-26 18:58:29 +08:00
22 lines
1016 B
C#
22 lines
1016 B
C#
// 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.
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
|
{
|
|
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";
|
|
public static readonly string DefaultFancyzonesNumberColor = "#000000";
|
|
|
|
// Fancy Zones Default Flags.
|
|
public static readonly bool DefaultFancyzonesShiftDrag = true;
|
|
public static readonly bool DefaultUseCursorposEditorStartupscreen = true;
|
|
public static readonly bool DefaultFancyzonesQuickLayoutSwitch = true;
|
|
public static readonly bool DefaultFancyzonesFlashZonesOnQuickSwitch = true;
|
|
}
|
|
}
|