Advertisement
WolfJere

Alacritty Nord Theme

Mar 23rd, 2021
1,210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.04 KB | None | 0 0
  1. # Copyright (c) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
  2. # Copyright (c) 2017-present Sven Greb <code@svengreb.de>
  3.  
  4. # Project:    Nord Alacritty
  5. # Version:    0.1.0
  6. # Repository: https://github.com/arcticicestudio/nord-alacritty
  7. # License:    MIT
  8. # References:
  9. #   https://github.com/alacritty/alacritty
  10.  
  11. window:
  12.   dimensions:
  13.     columns: 85
  14.     lines: 25
  15.  
  16.   padding:
  17.     x: 16
  18.     y: 16
  19.  
  20.   dynamic_padding: true
  21.  
  22.   decorations: none
  23.  
  24.   startup_mode: Windowed
  25.  
  26. background_opacity: 0.96
  27.  
  28. scrolling:
  29.   history: 10000
  30.  
  31.   multiplier: 1
  32.  
  33. key_bindings:
  34.   - { key: V,        mods: Control|Shift, action: Paste            }
  35.   - { key: C,        mods: Control|Shift, action: Copy             }
  36.  
  37. font:
  38.   normal:
  39.     family: Source Code Pro
  40.  
  41.   bold:
  42.     family: Source Code Pro
  43.  
  44.     style: Bold
  45.  
  46.   italic:
  47.     family: Source Code Pro
  48.  
  49.     style: Italic
  50.  
  51.   size: 11.5
  52.  
  53.   offset:
  54.     x: 0
  55.     y: 2
  56.  
  57.   glyph_offset:
  58.     x: 0
  59.     y: 1
  60.  
  61.   use_thin_strokes: false
  62.  
  63. colors:
  64.   primary:
  65.     background: '#2e3440'
  66.     foreground: '#d8dee9'
  67.     dim_foreground: '#a5abb6'
  68.  
  69.   cursor:
  70.     text: '#2e3440'
  71.     cursor: '#d8dee9'
  72.  
  73.   vi_mode_cursor:
  74.     text: '#2e3440'
  75.     cursor: '#d8dee9'
  76.  
  77.   selection:
  78.     text: CellForeground
  79.     background: '#4c566a'
  80.  
  81.   search:
  82.     matches:
  83.       foreground: CellBackground
  84.       background: '#88c0d0'
  85.     bar:
  86.       background: '#434c5e'
  87.       foreground: '#d8dee9'
  88.  
  89.   normal:
  90.     black: '#3b4252'
  91.     red: '#bf616a'
  92.     green: '#a3be8c'
  93.     yellow: '#ebcb8b'
  94.     blue: '#81a1c1'
  95.     magenta: '#b48ead'
  96.     cyan: '#88c0d0'
  97.     white: '#e5e9f0'
  98.  
  99.   bright:
  100.     black: '#4c566a'
  101.     red: '#bf616a'
  102.     green: '#a3be8c'
  103.     yellow: '#ebcb8b'
  104.     blue: '#81a1c1'
  105.     magenta: '#b48ead'
  106.     cyan: '#8fbcbb'
  107.     white: '#eceff4'
  108.  
  109.   dim:
  110.     black: '#373e4d'
  111.     red: '#94545d'
  112.     green: '#809575'
  113.     yellow: '#b29e75'
  114.     blue: '#68809a'
  115.     magenta: '#8c738c'
  116.     cyan: '#6d96a5'
  117.     white: '#aeb3bb'
  118.  
  119.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement