mirror of https://github.com/stenzek/duckstation
parent
1c643d704e
commit
d83dc3f332
File diff suppressed because one or more lines are too long
@ -0,0 +1,55 @@
|
||||
/*! SPDX-FileCopyrightText: 2019-2026 Connor McLaughlin <stenzek@gmail.com> and contributors. */
|
||||
/*! SPDX-License-Identifier: CC-BY-NC-ND-4.0 */
|
||||
//
|
||||
// darkruby.scss - Deep dark theme with ruby accent
|
||||
//
|
||||
|
||||
@use 'template' with (
|
||||
// --------------------------------------------------------------------------
|
||||
// QPalette colors
|
||||
// --------------------------------------------------------------------------
|
||||
$palette-window: #121212,
|
||||
$palette-base: #1b1b1b,
|
||||
$palette-button: #121212,
|
||||
$palette-text: #ffffff,
|
||||
$palette-highlight: #25447d,
|
||||
$palette-highlight-text: #ffffff,
|
||||
$palette-disabled-text: #808080,
|
||||
$palette-placeholder-text: #808080,
|
||||
$palette-link: #ffffff,
|
||||
$palette-alternate-base: #242424,
|
||||
$palette-disabled-light: #1b1b1b,
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
// Stylesheet colors
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
// Background hierarchy
|
||||
$bg-disabled: #0a0a0a,
|
||||
$bg-menu: #0e0e0e,
|
||||
$bg-control: #1a1a1a,
|
||||
$bg-surface: #1e1e1e,
|
||||
$bg-hover: #2d5399,
|
||||
$bg-active: #2a4e8f,
|
||||
$bg-button-hover: #1a3a62,
|
||||
$bg-pressed: #004ab0,
|
||||
|
||||
// Borders
|
||||
$border-color: #2e2e2e,
|
||||
$border-subtle: #222222,
|
||||
|
||||
// Text
|
||||
$text-color: #ffffff,
|
||||
$text-disabled: #555555,
|
||||
|
||||
// Accent
|
||||
$accent-color: #25447d,
|
||||
|
||||
// Slider handle
|
||||
$slider-handle: #25447d,
|
||||
$slider-handle-hover: #1a6ae0,
|
||||
$slider-handle-pressed: #3080f0,
|
||||
|
||||
// Checkbox icons
|
||||
$checkbox-icon-style: "white",
|
||||
);
|
||||
Loading…
Reference in New Issue