@ -0,0 +1,235 @@
 | 
			
		||||
// Copyright (c) 2016-present Arctic Ice Studio <development@arcticicestudio.com>
 | 
			
		||||
// Copyright (c) 2016-present Sven Greb <code@svengreb.de>
 | 
			
		||||
 | 
			
		||||
// Project:    Nord
 | 
			
		||||
// Version:    0.2.0
 | 
			
		||||
// Repository: https://github.com/arcticicestudio/nord
 | 
			
		||||
// License:    MIT
 | 
			
		||||
// References:
 | 
			
		||||
//   http://sass-lang.com
 | 
			
		||||
//   http://sassdoc.com
 | 
			
		||||
 | 
			
		||||
////
 | 
			
		||||
/// An arctic, north-bluish color palette.
 | 
			
		||||
/// Created for the clean- and minimal flat design pattern to achieve a optimal focus and readability for code syntax
 | 
			
		||||
/// highlighting and UI.  
 | 
			
		||||
/// It consists of a total of sixteen, carefully selected, dimmed pastel colors for a eye-comfortable, but yet colorful
 | 
			
		||||
/// ambiance.
 | 
			
		||||
///
 | 
			
		||||
/// @author Arctic Ice Studio <development@arcticicestudio.com>
 | 
			
		||||
////
 | 
			
		||||
 | 
			
		||||
/// Base component color of "Polar Night".
 | 
			
		||||
///
 | 
			
		||||
/// Used for texts, backgrounds, carets and structuring characters like curly- and square brackets.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @example scss - SCSS
 | 
			
		||||
///   /* For dark ambiance themes */
 | 
			
		||||
///   .background {
 | 
			
		||||
///     background-color: $nord0;
 | 
			
		||||
///   }
 | 
			
		||||
///   /* For light ambiance themes */
 | 
			
		||||
///   .text {
 | 
			
		||||
///     color: $nord0;
 | 
			
		||||
///   }
 | 
			
		||||
/// @group polarnight
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord0: #2e3440;
 | 
			
		||||
 | 
			
		||||
/// Lighter shade color of the base component color.
 | 
			
		||||
///
 | 
			
		||||
/// Used as a lighter background color for UI elements like status bars.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group polarnight
 | 
			
		||||
/// @see $nord0
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord1: #3b4252;
 | 
			
		||||
 | 
			
		||||
/// Lighter shade color of the base component color.
 | 
			
		||||
///
 | 
			
		||||
/// Used as line highlighting in the editor.  
 | 
			
		||||
/// In the UI scope it may be used as selection- and highlight color.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @example scss - SCSS
 | 
			
		||||
///   /* Code Syntax Highlighting scope */
 | 
			
		||||
///   .editor {
 | 
			
		||||
///     &.line {
 | 
			
		||||
///       background-color: $nord2;
 | 
			
		||||
///     }
 | 
			
		||||
///   }
 | 
			
		||||
///
 | 
			
		||||
///   /* UI scope */
 | 
			
		||||
///   button {
 | 
			
		||||
///     &:selected {
 | 
			
		||||
///       background-color: $nord2;
 | 
			
		||||
///     }
 | 
			
		||||
///   }
 | 
			
		||||
/// @group polarnight
 | 
			
		||||
/// @see $nord0
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord2: #434c5e;
 | 
			
		||||
 | 
			
		||||
/// Lighter shade color of the base component color.
 | 
			
		||||
///
 | 
			
		||||
/// Used for comments, invisibles, indent- and wrap guide marker.  
 | 
			
		||||
/// In the UI scope used as pseudoclass color for disabled elements.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @example scss - SCSS
 | 
			
		||||
///   /* Code Syntax Highlighting scope */
 | 
			
		||||
///   .editor {
 | 
			
		||||
///     &.indent-guide,
 | 
			
		||||
///     &.wrap-guide {
 | 
			
		||||
///       &.marker {
 | 
			
		||||
///         color: $nord3;
 | 
			
		||||
///       }
 | 
			
		||||
///     }
 | 
			
		||||
///   }
 | 
			
		||||
///   .comment,
 | 
			
		||||
///   .invisible {
 | 
			
		||||
///     color: $nord3;
 | 
			
		||||
///   }
 | 
			
		||||
///
 | 
			
		||||
///   /* UI scope */
 | 
			
		||||
///   button {
 | 
			
		||||
///     &:disabled {
 | 
			
		||||
///       background-color: $nord3;
 | 
			
		||||
///     }
 | 
			
		||||
///   }
 | 
			
		||||
/// @group polarnight
 | 
			
		||||
/// @see $nord0
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord3: #4c566a;
 | 
			
		||||
 | 
			
		||||
/// Base component color of "Snow Storm".
 | 
			
		||||
///
 | 
			
		||||
/// Main color for text, variables, constants and attributes.
 | 
			
		||||
/// In the UI scope used as semi-light background depending on the theme shading design.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @example scss - SCSS
 | 
			
		||||
///   /* For light ambiance themes */
 | 
			
		||||
///   .background {
 | 
			
		||||
///     background-color: $nord4;
 | 
			
		||||
///   }
 | 
			
		||||
///   /* For dark ambiance themes */
 | 
			
		||||
///   .text {
 | 
			
		||||
///     color: $nord4;
 | 
			
		||||
///   }
 | 
			
		||||
/// @group snowstorm
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord4: #d8dee9;
 | 
			
		||||
 | 
			
		||||
/// Lighter shade color of the base component color.
 | 
			
		||||
///
 | 
			
		||||
/// Used as a lighter background color for UI elements like status bars.  
 | 
			
		||||
/// Used as semi-light background depending on the theme shading design.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group snowstorm
 | 
			
		||||
/// @see $nord4
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord5: #e5e9f0;
 | 
			
		||||
 | 
			
		||||
/// Lighter shade color of the base component color.
 | 
			
		||||
///
 | 
			
		||||
/// Used for punctuations, carets and structuring characters like curly- and square brackets.  
 | 
			
		||||
/// In the UI scope used as background, selection- and highlight color depending on the theme shading design.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group snowstorm
 | 
			
		||||
/// @see $nord4
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord6: #eceff4;
 | 
			
		||||
 | 
			
		||||
/// Bluish core color.
 | 
			
		||||
///
 | 
			
		||||
/// Used for classes, types and documentation tags.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group frost
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord7:  #8fbcbb;
 | 
			
		||||
 | 
			
		||||
/// Bluish core accent color.
 | 
			
		||||
///
 | 
			
		||||
/// Represents the accent color of the color palette.  
 | 
			
		||||
/// Main color for primary UI elements and methods/functions.  
 | 
			
		||||
///
 | 
			
		||||
/// Can be used for
 | 
			
		||||
///   - Markup quotes
 | 
			
		||||
///   - Markup link URLs
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group frost
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord8:  #88c0d0;
 | 
			
		||||
 | 
			
		||||
/// Bluish core color.
 | 
			
		||||
///
 | 
			
		||||
/// Used for language-specific syntactic/reserved support characters and keywords, operators, tags, units and
 | 
			
		||||
/// punctuations like (semi)colons,commas and braces.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group frost
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord9:  #81a1c1;
 | 
			
		||||
 | 
			
		||||
/// Bluish core color.
 | 
			
		||||
///
 | 
			
		||||
/// Used for markup doctypes, import/include/require statements, pre-processor statements and at-rules (`@`).
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group frost
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord10: #5e81ac;
 | 
			
		||||
 | 
			
		||||
/// Colorful component color.
 | 
			
		||||
///
 | 
			
		||||
/// Used for errors, git/diff deletion and linter marker.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group aurora
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord11: #bf616a;
 | 
			
		||||
 | 
			
		||||
/// Colorful component color.
 | 
			
		||||
///
 | 
			
		||||
/// Used for annotations.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group aurora
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord12: #d08770;
 | 
			
		||||
 | 
			
		||||
/// Colorful component color.
 | 
			
		||||
///
 | 
			
		||||
/// Used for escape characters, regular expressions and markup entities.  
 | 
			
		||||
/// In the UI scope used for warnings and git/diff renamings.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group aurora
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord13: #ebcb8b;
 | 
			
		||||
 | 
			
		||||
/// Colorful component color.
 | 
			
		||||
///
 | 
			
		||||
/// Main color for strings and attribute values.  
 | 
			
		||||
/// In the UI scope used for git/diff additions and success visualizations.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group aurora
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord14: #a3be8c;
 | 
			
		||||
 | 
			
		||||
/// Colorful component color.
 | 
			
		||||
///
 | 
			
		||||
/// Used for numbers.
 | 
			
		||||
///
 | 
			
		||||
/// @access public
 | 
			
		||||
/// @group aurora
 | 
			
		||||
/// @since 0.1.0
 | 
			
		||||
$nord15: #b48ead;
 | 
			
		||||
@ -0,0 +1,12 @@
 | 
			
		||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <defs>
 | 
			
		||||
  <filter id="filter4154" x="-.132" y="-.020842" width="1.264" height="1.0417" color-interpolation-filters="sRGB">
 | 
			
		||||
   <feGaussianBlur stdDeviation="1.65"/>
 | 
			
		||||
  </filter>
 | 
			
		||||
 </defs>
 | 
			
		||||
 <g transform="translate(0 -852.36)" shape-rendering="auto">
 | 
			
		||||
  <path d="m7.2 858.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" fill="#000000" fill-opacity=".45" filter="url(#filter4154)" opacity=".9"/>
 | 
			
		||||
  <path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" fill="#2E3440" />
 | 
			
		||||
  <path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z"  fill="#ffffff"/>
 | 
			
		||||
 </g>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 883 B  | 
@ -0,0 +1,12 @@
 | 
			
		||||
<svg width="35" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <defs>
 | 
			
		||||
  <filter id="filter4154" x="-.132" y="-.020842" width="1.264" height="1.0417" color-interpolation-filters="sRGB">
 | 
			
		||||
   <feGaussianBlur stdDeviation="1.65"/>
 | 
			
		||||
  </filter>
 | 
			
		||||
 </defs>
 | 
			
		||||
 <g transform="translate(0 -852.36)" shape-rendering="auto">
 | 
			
		||||
  <path d="m7.2 858.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" fill="#000000" fill-opacity=".45" filter="url(#filter4154)" opacity=".9"/>
 | 
			
		||||
  <path d="m7 857.36h28v190h-28c-1.108 0-2-0.892-2-2v-186c0-1.108 0.892-2 2-2z" fill="#8FBCBB" />
 | 
			
		||||
  <path transform="translate(0 852.36)" d="m18 94c-0.554 0-1 0.446-1 1v4h-4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4v4c0 0.554 0.446 1 1 1s1-0.446 1-1v-4h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4v-4c0-0.554-0.446-1-1-1zm8 6a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8z"  fill="#ffffff"/>
 | 
			
		||||
 </g>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 883 B  | 
@ -0,0 +1,3 @@
 | 
			
		||||
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm5.5898 4.5801 1.4102 1.4199-9 9-5-5 1.4102-1.4102 3.5898 3.5801z" fill="#2E3440"/>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 284 B  | 
@ -0,0 +1,3 @@
 | 
			
		||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm5.5898 4.5801 1.4102 1.4199-9 9-5-5 1.4102-1.4102 3.5898 3.5801z" fill="#8fbcbb"/>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 269 B  | 
@ -0,0 +1,5 @@
 | 
			
		||||
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <g transform="translate(0 -948.36)">
 | 
			
		||||
  <circle id="corner-ripple" cx="52" cy="1000" r="48" fill="#2E3440" opacity=".25"/>
 | 
			
		||||
 </g>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 216 B  | 
@ -0,0 +1,5 @@
 | 
			
		||||
<svg width="104" height="104" version="1.1" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <g transform="translate(0 -948.36)">
 | 
			
		||||
  <circle id="corner-ripple" cx="52" cy="1000" r="48" fill="#8FBCBB" opacity=".25"/>
 | 
			
		||||
 </g>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 216 B  | 
@ -0,0 +1,3 @@
 | 
			
		||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10c5.52 0 10-4.48 10-10s-4.48-10-10-10zm0 7c1.656 0 3 1.344 3 3s-1.344 3-3 3-3-1.344-3-3 1.344-3 3-3z" fill="#2E3440"/>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 274 B  | 
@ -0,0 +1,3 @@
 | 
			
		||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10c5.52 0 10-4.48 10-10s-4.48-10-10-10zm0 7c1.656 0 3 1.344 3 3s-1.344 3-3 3-3-1.344-3-3 1.344-3 3-3z" fill="#8FBCBB"/>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 274 B  | 
@ -0,0 +1,75 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
			
		||||
<svg
 | 
			
		||||
   width="44"
 | 
			
		||||
   height="26"
 | 
			
		||||
   version="1.1"
 | 
			
		||||
   viewBox="0 0 44 26"
 | 
			
		||||
   id="svg176"
 | 
			
		||||
   sodipodi:docname="toggle-on-Dark.svg"
 | 
			
		||||
   inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
 | 
			
		||||
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
 | 
			
		||||
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
 | 
			
		||||
   xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
   xmlns:svg="http://www.w3.org/2000/svg">
 | 
			
		||||
  <sodipodi:namedview
 | 
			
		||||
     id="namedview178"
 | 
			
		||||
     pagecolor="#ffffff"
 | 
			
		||||
     bordercolor="#666666"
 | 
			
		||||
     borderopacity="1.0"
 | 
			
		||||
     inkscape:showpageshadow="2"
 | 
			
		||||
     inkscape:pageopacity="0.0"
 | 
			
		||||
     inkscape:pagecheckerboard="0"
 | 
			
		||||
     inkscape:deskcolor="#d1d1d1"
 | 
			
		||||
     showgrid="true"
 | 
			
		||||
     inkscape:zoom="8.34386"
 | 
			
		||||
     inkscape:cx="8.7489483"
 | 
			
		||||
     inkscape:cy="24.389192"
 | 
			
		||||
     inkscape:window-width="1920"
 | 
			
		||||
     inkscape:window-height="1000"
 | 
			
		||||
     inkscape:window-x="0"
 | 
			
		||||
     inkscape:window-y="44"
 | 
			
		||||
     inkscape:window-maximized="1"
 | 
			
		||||
     inkscape:current-layer="svg176">
 | 
			
		||||
    <inkscape:grid
 | 
			
		||||
       type="xygrid"
 | 
			
		||||
       id="grid3683" />
 | 
			
		||||
  </sodipodi:namedview>
 | 
			
		||||
  <defs
 | 
			
		||||
     id="defs159">
 | 
			
		||||
    <filter
 | 
			
		||||
       inkscape:collect="always"
 | 
			
		||||
       style="color-interpolation-filters:sRGB"
 | 
			
		||||
       id="filter932"
 | 
			
		||||
       x="-0.147"
 | 
			
		||||
       y="-0.147"
 | 
			
		||||
       width="1.294"
 | 
			
		||||
       height="1.294">
 | 
			
		||||
      <feGaussianBlur
 | 
			
		||||
         inkscape:collect="always"
 | 
			
		||||
         stdDeviation="1.225"
 | 
			
		||||
         id="feGaussianBlur934" />
 | 
			
		||||
    </filter>
 | 
			
		||||
  </defs>
 | 
			
		||||
  <rect
 | 
			
		||||
     x="3"
 | 
			
		||||
     y="5"
 | 
			
		||||
     width="32"
 | 
			
		||||
     height="14"
 | 
			
		||||
     rx="7"
 | 
			
		||||
     ry="7"
 | 
			
		||||
     id="rect7"
 | 
			
		||||
     style="opacity:0.35;fill:#2E3440" />
 | 
			
		||||
  <circle
 | 
			
		||||
     cx="31"
 | 
			
		||||
     cy="13"
 | 
			
		||||
     r="10"
 | 
			
		||||
     fill="#8FBCBB"
 | 
			
		||||
     id="circle376"
 | 
			
		||||
     style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:1;filter:url(#filter932)" />
 | 
			
		||||
  <circle
 | 
			
		||||
     cx="31"
 | 
			
		||||
     cy="12"
 | 
			
		||||
     r="10"
 | 
			
		||||
     id="circle14"
 | 
			
		||||
     style="fill:#2E3440;fill-opacity:1;stroke-width:1" />
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 1.9 KiB  | 
@ -0,0 +1,80 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
			
		||||
<svg
 | 
			
		||||
   width="44"
 | 
			
		||||
   height="26"
 | 
			
		||||
   version="1.1"
 | 
			
		||||
   viewBox="0 0 44 26"
 | 
			
		||||
   id="svg22"
 | 
			
		||||
   sodipodi:docname="toggle-on.svg"
 | 
			
		||||
   inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
 | 
			
		||||
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
 | 
			
		||||
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
 | 
			
		||||
   xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
   xmlns:svg="http://www.w3.org/2000/svg">
 | 
			
		||||
  <sodipodi:namedview
 | 
			
		||||
     id="namedview24"
 | 
			
		||||
     pagecolor="#ffffff"
 | 
			
		||||
     bordercolor="#666666"
 | 
			
		||||
     borderopacity="1.0"
 | 
			
		||||
     inkscape:showpageshadow="2"
 | 
			
		||||
     inkscape:pageopacity="0.0"
 | 
			
		||||
     inkscape:pagecheckerboard="0"
 | 
			
		||||
     inkscape:deskcolor="#d1d1d1"
 | 
			
		||||
     showgrid="true"
 | 
			
		||||
     inkscape:zoom="23.6"
 | 
			
		||||
     inkscape:cx="41.822034"
 | 
			
		||||
     inkscape:cy="8.8771186"
 | 
			
		||||
     inkscape:window-width="1920"
 | 
			
		||||
     inkscape:window-height="1000"
 | 
			
		||||
     inkscape:window-x="0"
 | 
			
		||||
     inkscape:window-y="44"
 | 
			
		||||
     inkscape:window-maximized="1"
 | 
			
		||||
     inkscape:current-layer="svg22">
 | 
			
		||||
    <inkscape:grid
 | 
			
		||||
       type="xygrid"
 | 
			
		||||
       id="grid327"
 | 
			
		||||
       originx="0"
 | 
			
		||||
       originy="0" />
 | 
			
		||||
  </sodipodi:namedview>
 | 
			
		||||
  <defs
 | 
			
		||||
     id="defs5">
 | 
			
		||||
    <filter
 | 
			
		||||
       inkscape:collect="always"
 | 
			
		||||
       style="color-interpolation-filters:sRGB"
 | 
			
		||||
       id="filter932"
 | 
			
		||||
       x="-0.147"
 | 
			
		||||
       y="-0.147"
 | 
			
		||||
       width="1.294"
 | 
			
		||||
       height="1.294">
 | 
			
		||||
      <feGaussianBlur
 | 
			
		||||
         inkscape:collect="always"
 | 
			
		||||
         stdDeviation="1.225"
 | 
			
		||||
         id="feGaussianBlur934" />
 | 
			
		||||
    </filter>
 | 
			
		||||
  </defs>
 | 
			
		||||
  <rect
 | 
			
		||||
     x="3"
 | 
			
		||||
     y="5"
 | 
			
		||||
     width="32"
 | 
			
		||||
     height="14"
 | 
			
		||||
     rx="7"
 | 
			
		||||
     ry="7"
 | 
			
		||||
     fill="#8FBCBB"
 | 
			
		||||
     opacity="0.35"
 | 
			
		||||
     id="rect7"
 | 
			
		||||
     style="stroke-width:0.864099" />
 | 
			
		||||
  <circle
 | 
			
		||||
     cx="31"
 | 
			
		||||
     cy="13"
 | 
			
		||||
     r="10"
 | 
			
		||||
     fill="#8FBCBB"
 | 
			
		||||
     id="circle376"
 | 
			
		||||
     style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:1;filter:url(#filter932)" />
 | 
			
		||||
  <circle
 | 
			
		||||
     cx="31"
 | 
			
		||||
     cy="12"
 | 
			
		||||
     r="10"
 | 
			
		||||
     fill="#8FBCBB"
 | 
			
		||||
     id="circle14"
 | 
			
		||||
     style="stroke-width:1" />
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 1.9 KiB  | 
| 
		 After Width: | Height: | Size: 5.5 KiB  | 
| 
		 After Width: | Height: | Size: 4.5 KiB  | 
| 
		 After Width: | Height: | Size: 170 KiB  | 
@ -0,0 +1,3 @@
 | 
			
		||||
<svg width="24" height="24" fill="#000000" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm5.5898 4.5801 1.4102 1.4199-9 9-5-5 1.4102-1.4102 3.5898 3.5801z" fill="#8FBCBB"/>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 284 B  | 
@ -0,0 +1,3 @@
 | 
			
		||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <path d="m12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm5.5898 4.5801 1.4102 1.4199-9 9-5-5 1.4102-1.4102 3.5898 3.5801z" fill="#8FBCBB"/>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 269 B  | 
@ -0,0 +1,6 @@
 | 
			
		||||
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <g transform="translate(0 -1036.4)">
 | 
			
		||||
  <circle cx="8" cy="1044.4" r="8" fill="#8FBCBB"/>
 | 
			
		||||
  <path transform="translate(0 1036.4)" d="m7 4v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" fill="#ffffff"/>
 | 
			
		||||
 </g>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 298 B  | 
@ -0,0 +1,6 @@
 | 
			
		||||
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
 | 
			
		||||
 <g transform="translate(0 -1036.4)">
 | 
			
		||||
  <circle cx="8" cy="1044.4" r="8" fill="#8FBCBB"/>
 | 
			
		||||
  <path transform="translate(0 1036.4)" d="m7 4v3h-3v2h3v3h2v-3h3v-2h-3v-3h-2z" fill="#ffffff"/>
 | 
			
		||||
 </g>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 298 B  | 
@ -0,0 +1,75 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
			
		||||
<svg
 | 
			
		||||
   width="44"
 | 
			
		||||
   height="26"
 | 
			
		||||
   version="1.1"
 | 
			
		||||
   viewBox="0 0 44 26"
 | 
			
		||||
   id="svg176"
 | 
			
		||||
   sodipodi:docname="toggle-on-Dark.svg"
 | 
			
		||||
   inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
 | 
			
		||||
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
 | 
			
		||||
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
 | 
			
		||||
   xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
   xmlns:svg="http://www.w3.org/2000/svg">
 | 
			
		||||
  <sodipodi:namedview
 | 
			
		||||
     id="namedview178"
 | 
			
		||||
     pagecolor="#ffffff"
 | 
			
		||||
     bordercolor="#666666"
 | 
			
		||||
     borderopacity="1.0"
 | 
			
		||||
     inkscape:showpageshadow="2"
 | 
			
		||||
     inkscape:pageopacity="0.0"
 | 
			
		||||
     inkscape:pagecheckerboard="0"
 | 
			
		||||
     inkscape:deskcolor="#d1d1d1"
 | 
			
		||||
     showgrid="true"
 | 
			
		||||
     inkscape:zoom="8.34386"
 | 
			
		||||
     inkscape:cx="8.7489483"
 | 
			
		||||
     inkscape:cy="24.389192"
 | 
			
		||||
     inkscape:window-width="1920"
 | 
			
		||||
     inkscape:window-height="1000"
 | 
			
		||||
     inkscape:window-x="0"
 | 
			
		||||
     inkscape:window-y="44"
 | 
			
		||||
     inkscape:window-maximized="1"
 | 
			
		||||
     inkscape:current-layer="svg176">
 | 
			
		||||
    <inkscape:grid
 | 
			
		||||
       type="xygrid"
 | 
			
		||||
       id="grid3683" />
 | 
			
		||||
  </sodipodi:namedview>
 | 
			
		||||
  <defs
 | 
			
		||||
     id="defs159">
 | 
			
		||||
    <filter
 | 
			
		||||
       inkscape:collect="always"
 | 
			
		||||
       style="color-interpolation-filters:sRGB"
 | 
			
		||||
       id="filter932"
 | 
			
		||||
       x="-0.147"
 | 
			
		||||
       y="-0.147"
 | 
			
		||||
       width="1.294"
 | 
			
		||||
       height="1.294">
 | 
			
		||||
      <feGaussianBlur
 | 
			
		||||
         inkscape:collect="always"
 | 
			
		||||
         stdDeviation="1.225"
 | 
			
		||||
         id="feGaussianBlur934" />
 | 
			
		||||
    </filter>
 | 
			
		||||
  </defs>
 | 
			
		||||
  <rect
 | 
			
		||||
     x="3"
 | 
			
		||||
     y="5"
 | 
			
		||||
     width="32"
 | 
			
		||||
     height="14"
 | 
			
		||||
     rx="7"
 | 
			
		||||
     ry="7"
 | 
			
		||||
     id="rect7"
 | 
			
		||||
     style="opacity:0.35;fill:#8FBCBB" />
 | 
			
		||||
  <circle
 | 
			
		||||
     cx="31"
 | 
			
		||||
     cy="13"
 | 
			
		||||
     r="10"
 | 
			
		||||
     fill="#8FBCBB"
 | 
			
		||||
     id="circle376"
 | 
			
		||||
     style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:1;filter:url(#filter932)" />
 | 
			
		||||
  <circle
 | 
			
		||||
     cx="31"
 | 
			
		||||
     cy="12"
 | 
			
		||||
     r="10"
 | 
			
		||||
     id="circle14"
 | 
			
		||||
     style="fill:#8FBCBB;fill-opacity:1;stroke-width:1" />
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 1.9 KiB  | 
@ -0,0 +1,80 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 | 
			
		||||
<svg
 | 
			
		||||
   width="44"
 | 
			
		||||
   height="26"
 | 
			
		||||
   version="1.1"
 | 
			
		||||
   viewBox="0 0 44 26"
 | 
			
		||||
   id="svg22"
 | 
			
		||||
   sodipodi:docname="toggle-on.svg"
 | 
			
		||||
   inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
 | 
			
		||||
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
 | 
			
		||||
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
 | 
			
		||||
   xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
   xmlns:svg="http://www.w3.org/2000/svg">
 | 
			
		||||
  <sodipodi:namedview
 | 
			
		||||
     id="namedview24"
 | 
			
		||||
     pagecolor="#ffffff"
 | 
			
		||||
     bordercolor="#666666"
 | 
			
		||||
     borderopacity="1.0"
 | 
			
		||||
     inkscape:showpageshadow="2"
 | 
			
		||||
     inkscape:pageopacity="0.0"
 | 
			
		||||
     inkscape:pagecheckerboard="0"
 | 
			
		||||
     inkscape:deskcolor="#d1d1d1"
 | 
			
		||||
     showgrid="true"
 | 
			
		||||
     inkscape:zoom="23.6"
 | 
			
		||||
     inkscape:cx="41.822034"
 | 
			
		||||
     inkscape:cy="8.8771186"
 | 
			
		||||
     inkscape:window-width="1920"
 | 
			
		||||
     inkscape:window-height="1000"
 | 
			
		||||
     inkscape:window-x="0"
 | 
			
		||||
     inkscape:window-y="44"
 | 
			
		||||
     inkscape:window-maximized="1"
 | 
			
		||||
     inkscape:current-layer="svg22">
 | 
			
		||||
    <inkscape:grid
 | 
			
		||||
       type="xygrid"
 | 
			
		||||
       id="grid327"
 | 
			
		||||
       originx="0"
 | 
			
		||||
       originy="0" />
 | 
			
		||||
  </sodipodi:namedview>
 | 
			
		||||
  <defs
 | 
			
		||||
     id="defs5">
 | 
			
		||||
    <filter
 | 
			
		||||
       inkscape:collect="always"
 | 
			
		||||
       style="color-interpolation-filters:sRGB"
 | 
			
		||||
       id="filter932"
 | 
			
		||||
       x="-0.147"
 | 
			
		||||
       y="-0.147"
 | 
			
		||||
       width="1.294"
 | 
			
		||||
       height="1.294">
 | 
			
		||||
      <feGaussianBlur
 | 
			
		||||
         inkscape:collect="always"
 | 
			
		||||
         stdDeviation="1.225"
 | 
			
		||||
         id="feGaussianBlur934" />
 | 
			
		||||
    </filter>
 | 
			
		||||
  </defs>
 | 
			
		||||
  <rect
 | 
			
		||||
     x="3"
 | 
			
		||||
     y="5"
 | 
			
		||||
     width="32"
 | 
			
		||||
     height="14"
 | 
			
		||||
     rx="7"
 | 
			
		||||
     ry="7"
 | 
			
		||||
     fill="#8FBCBB"
 | 
			
		||||
     opacity="0.35"
 | 
			
		||||
     id="rect7"
 | 
			
		||||
     style="stroke-width:0.864099" />
 | 
			
		||||
  <circle
 | 
			
		||||
     cx="31"
 | 
			
		||||
     cy="13"
 | 
			
		||||
     r="10"
 | 
			
		||||
     fill="#8FBCBB"
 | 
			
		||||
     id="circle376"
 | 
			
		||||
     style="opacity:0.25;fill:#000000;fill-opacity:1;stroke-width:1;filter:url(#filter932)" />
 | 
			
		||||
  <circle
 | 
			
		||||
     cx="31"
 | 
			
		||||
     cy="12"
 | 
			
		||||
     r="10"
 | 
			
		||||
     fill="#8FBCBB"
 | 
			
		||||
     id="circle14"
 | 
			
		||||
     style="stroke-width:1" />
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 1.9 KiB  | 
| 
		 After Width: | Height: | Size: 68 B  | 
| 
		 After Width: | Height: | Size: 197 B  | 
| 
		 After Width: | Height: | Size: 168 B  | 
| 
		 After Width: | Height: | Size: 187 B  | 
| 
		 After Width: | Height: | Size: 180 B  | 
| 
		 After Width: | Height: | Size: 424 B  | 
| 
		 After Width: | Height: | Size: 358 B  | 
| 
		 After Width: | Height: | Size: 424 B  | 
| 
		 After Width: | Height: | Size: 433 B  | 
| 
		 After Width: | Height: | Size: 372 B  | 
| 
		 After Width: | Height: | Size: 307 B  | 
| 
		 After Width: | Height: | Size: 372 B  | 
| 
		 After Width: | Height: | Size: 378 B  | 
| 
		 After Width: | Height: | Size: 507 B  | 
| 
		 After Width: | Height: | Size: 346 B  | 
| 
		 After Width: | Height: | Size: 484 B  | 
| 
		 After Width: | Height: | Size: 442 B  | 
| 
		 After Width: | Height: | Size: 365 B  | 
| 
		 After Width: | Height: | Size: 74 B  | 
| 
		 After Width: | Height: | Size: 74 B  | 
| 
		 After Width: | Height: | Size: 168 B  | 
| 
		 After Width: | Height: | Size: 284 B  | 
| 
		 After Width: | Height: | Size: 180 B  | 
| 
		 After Width: | Height: | Size: 197 B  | 
| 
		 After Width: | Height: | Size: 137 B  | 
| 
		 After Width: | Height: | Size: 187 B  | 
| 
		 After Width: | Height: | Size: 137 B  | 
| 
		 After Width: | Height: | Size: 163 B  | 
| 
		 After Width: | Height: | Size: 83 B  | 
| 
		 After Width: | Height: | Size: 88 B  | 
| 
		 After Width: | Height: | Size: 85 B  | 
| 
		 After Width: | Height: | Size: 132 B  | 
| 
		 After Width: | Height: | Size: 125 B  | 
| 
		 After Width: | Height: | Size: 129 B  | 
| 
		 After Width: | Height: | Size: 109 B  | 
| 
		 After Width: | Height: | Size: 110 B  | 
| 
		 After Width: | Height: | Size: 110 B  | 
| 
		 After Width: | Height: | Size: 318 B  | 
| 
		 After Width: | Height: | Size: 377 B  | 
| 
		 After Width: | Height: | Size: 260 B  | 
| 
		 After Width: | Height: | Size: 306 B  | 
| 
		 After Width: | Height: | Size: 282 B  | 
| 
		 After Width: | Height: | Size: 334 B  | 
| 
		 After Width: | Height: | Size: 300 B  | 
| 
		 After Width: | Height: | Size: 361 B  | 
| 
		 After Width: | Height: | Size: 260 B  | 
| 
		 After Width: | Height: | Size: 306 B  | 
| 
		 After Width: | Height: | Size: 282 B  | 
| 
		 After Width: | Height: | Size: 334 B  | 
| 
		 After Width: | Height: | Size: 130 B  | 
| 
		 After Width: | Height: | Size: 136 B  | 
| 
		 After Width: | Height: | Size: 130 B  | 
| 
		 After Width: | Height: | Size: 135 B  | 
| 
		 After Width: | Height: | Size: 136 B  | 
| 
		 After Width: | Height: | Size: 136 B  | 
| 
		 After Width: | Height: | Size: 136 B  | 
| 
		 After Width: | Height: | Size: 158 B  | 
| 
		 After Width: | Height: | Size: 135 B  | 
| 
		 After Width: | Height: | Size: 138 B  | 
| 
		 After Width: | Height: | Size: 144 B  | 
| 
		 After Width: | Height: | Size: 138 B  | 
| 
		 After Width: | Height: | Size: 160 B  | 
| 
		 After Width: | Height: | Size: 143 B  | 
| 
		 After Width: | Height: | Size: 129 B  | 
| 
		 After Width: | Height: | Size: 129 B  | 
| 
		 After Width: | Height: | Size: 129 B  | 
| 
		 After Width: | Height: | Size: 128 B  |