0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-30 19:00:10 -05:00
penpot/frontend/resources/styles/common/dependencies/uxbox-light.scss

47 lines
1.6 KiB
SCSS
Raw Normal View History

2016-03-01 20:39:13 +02:00
// 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 http://mozilla.org/MPL/2.0/.
//
// Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz>
// Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
2016-02-17 08:56:02 +01:00
// This is a standard color scheme for UXBOX UI
// Hope you like it and feel free to create your own one!
2016-02-17 08:56:02 +01:00
2016-03-17 19:17:55 +01:00
// UXBOX Light Theme :)
2016-02-20 10:15:49 +01:00
// Main interaction color
2016-02-17 08:56:02 +01:00
$main-ui-color: $color-primary;
2016-02-19 19:41:33 +01:00
$intense-main-ui-color: darken($main-ui-color, 25%);
2016-02-20 10:15:49 +01:00
// Set the UI flavour
2016-02-19 19:41:33 +01:00
$ui-flavour: #90969d;
2016-02-17 08:56:02 +01:00
2016-02-20 10:15:49 +01:00
// Change next colors for more customization
2016-02-17 08:56:02 +01:00
// Background colors
2016-02-20 10:15:49 +01:00
$primary-ui-bg: $color-white;
2016-02-19 19:41:33 +01:00
$secondary-ui-bg: mix($ui-flavour, $color-white, $mix-percentage-lighter);
$dark-ui-bg: mix($ui-flavour, $color-white, $mix-percentage-light);
2016-02-17 08:56:02 +01:00
// Border color
2016-02-19 19:41:33 +01:00
$intense-ui-border: $ui-flavour;
$medium-ui-border: mix($ui-flavour, $color-white, $mix-percentage-light);
$soft-ui-border: lighten($medium-ui-border, 18%);
2016-02-17 08:56:02 +01:00
// Icon colors
2016-02-19 19:41:33 +01:00
$intense-ui-icons: mix($ui-flavour, $color-black, $mix-percentage-dark);
$medium-ui-icons: mix($ui-flavour, $color-white, $mix-percentage-light);
$soft-ui-icons: mix($ui-flavour, $color-white, $mix-percentage-lighter);
2016-02-17 08:56:02 +01:00
// Text colors
2016-02-19 19:41:33 +01:00
$intense-ui-text: mix($ui-flavour, $color-black, $mix-percentage-darker);
$medium-ui-text: $ui-flavour;
$soft-ui-text: mix($ui-flavour, $color-white, $mix-percentage-light);
2016-02-17 08:56:02 +01:00
// Canvas colors
2016-02-19 19:41:33 +01:00
$canvas-bg: mix($ui-flavour, $color-white, $mix-percentage-lighter);
$scrollbar-bg: mix($ui-flavour, $color-white, $mix-percentage-light);
2019-02-19 15:56:22 +01:00
// Input colors
$input-bg: $color-light-bg;