////////////////////////////////////////////////////////////////////////////////////////// // _ _ ____ _ _ ___ ____ // // |_/ |__| |\ | | \ | | This file belongs to Kando, the cross-platform // // | \_ | | | \| |__/ |__| pie menu. Read more on github.com/kando-menu/kando // // // ////////////////////////////////////////////////////////////////////////////////////////// // SPDX-FileCopyrightText: Simon Schneegans // SPDX-FileCopyrightText: Elfi Ox */ // SPDX-FileCopyrightText: Ba Nyar Naing */ // SPDX-License-Identifier: CC0-1.0 { name: 'Nord', author: 'Simon Schneegans, Elfi Ox, Ba Nyar Naing', license: 'CC0-1.0', themeVersion: '1.0', // This theme was created for Kando's theme engine version 1. Kando will use this to // check if the theme is compatible with the current version of Kando. engineVersion: 1, // When a menu is opened too close to a screen's edge, it is moved away from the edge // by this amount of pixels. maxMenuRadius: 160, // This theme draws child items below their parent items. drawChildrenBelow: false, // These colors can be configured by the user and are vailable in the CSS file as CSS // variables. The default values are used if the user does not provide any values. colors: { 'accent-color': '#D8DEE9', 'hover-color': '#D8DEE9', 'connector-color': '#3B4252', 'circle-color' : '#4C566A', 'border-color': '#3B4252', 'label-background-color': '#434C5E', 'text-color' : '#ECEFF4' }, // This theme uses two layers, one for the icon and the background and one for the arrow // which points to the hovered item. layers: [ { class: 'icon-layer', content: 'icon' }, { class: 'label-layer', content: 'name' }, ], }