mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-25 18:18:16 +08:00
13c4c188fa
Co-authored-by: Ivan Stošić <ivan100sic@gmail.com>
21 lines
936 B
C#
21 lines
936 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";
|
|
|
|
// 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;
|
|
}
|
|
}
|