mirror of
https://github.com/penpot/penpot.git
synced 2025-03-13 16:21:57 -05:00
add ui dark theme
This commit is contained in:
parent
f3511809fe
commit
8f6a63ae7c
4 changed files with 44 additions and 1 deletions
40
resources/styles/dependencies/uxbox-dark.scss
Normal file
40
resources/styles/dependencies/uxbox-dark.scss
Normal file
|
@ -0,0 +1,40 @@
|
|||
// 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>
|
||||
|
||||
// This is a standard color scheme for UXBOX UI
|
||||
// Hope you like ir and feel free to create your own one!
|
||||
|
||||
// UXBOX Dark Theme :)
|
||||
|
||||
// Main interaction color
|
||||
$main-ui-color: $color-primary;
|
||||
$intense-main-ui-color: darken($main-ui-color, 25%);
|
||||
|
||||
// Change next colors for more customization
|
||||
// Background colors
|
||||
$primary-ui-bg: #2C2C2C;
|
||||
$secondary-ui-bg: #3d3f40;
|
||||
$dark-ui-bg: #232323;
|
||||
|
||||
// Border color
|
||||
$intense-ui-border: #a9adaf;
|
||||
$medium-ui-border: #3d3f40;
|
||||
$soft-ui-border: #232323;
|
||||
|
||||
// Icon colors
|
||||
$intense-ui-icons: #a9adaf;
|
||||
$medium-ui-icons: #808386;
|
||||
$soft-ui-icons: #4a4e52;
|
||||
|
||||
// Text colors
|
||||
$intense-ui-text: #e0e6e9;
|
||||
$medium-ui-text: #8d9496;
|
||||
$soft-ui-text: #4e4f50;
|
||||
|
||||
// Canvas colors
|
||||
$canvas-bg: #dce1e3;
|
||||
$scrollbar-bg: #878c8e;
|
|
@ -8,6 +8,8 @@
|
|||
// This is a standard color scheme for UXBOX UI
|
||||
// Hope you like ir and feel free to create your own one!
|
||||
|
||||
// UXBOX Light Theme :)
|
||||
|
||||
// Main interaction color
|
||||
$main-ui-color: $color-primary;
|
||||
$intense-main-ui-color: darken($main-ui-color, 25%);
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
|
||||
@import 'dependencies/colors';
|
||||
@import 'dependencies/uxbox-light';
|
||||
//@import 'dependencies/uxbox-dark';
|
||||
@import 'dependencies/helpers';
|
||||
@import 'dependencies/mixin';
|
||||
@import 'dependencies/fonts';
|
||||
|
|
|
@ -102,7 +102,7 @@
|
|||
|
||||
li {
|
||||
align-items: center;
|
||||
background-color: $color-gray-lighter;
|
||||
background-color: $secondary-ui-bg;
|
||||
border: 1px solid transparent;
|
||||
border-radius: $br-small;
|
||||
cursor: pointer;
|
||||
|
|
Loading…
Add table
Reference in a new issue