diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml
index ef7ff9a..c9a9663 100644
--- a/alacritty/alacritty.yml
+++ b/alacritty/alacritty.yml
@@ -73,13 +73,13 @@ scrolling:
 font:
   # Normal (roman) font face
   normal:
-    family: Iosevka 3.3.0 Custom
+    family: Iosevka Custom
     # The `style` can be specified to pick a specific face.
     style: Medium
 
   # Bold font face
   bold:
-    family: Iosevka 3.3.0 Custom
+    family: Iosevka Custom
     # The `style` can be specified to pick a specific face.
     style: Medium Bold
 
@@ -113,73 +113,50 @@ debug:
   persistent_logging: false
 
 # If `true`, bold text is drawn using the bright color variants.
-draw_bold_text_with_bright_colors: true
+# draw_bold_text_with_bright_colors: true
 
-# Colors (Gruvbox Dark Soft)
+# Base16 OceanicNext 256 - alacritty color config
+# https://github.com/voronianski/oceanic-next-color-scheme
 colors:
   # Default colors
   primary:
-    background: '0x262626'
-    foreground: '0xc6c6c6'
+    background: '0x1b2b34'
+    foreground: '0xc0c5ce'
 
-    # Bright and dim foreground colors
-    #
-    # The dimmed foreground color is calculated automatically if it is not present.
-    # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
-    # is `false`, the normal foreground color will be used.
-    #dim_foreground: '0x9a9a9a'
-    #bright_foreground: '0xffffff'
-
-  # Cursor colors
-  #
-  # Colors which should be used to draw the terminal cursor. If these are unset,
-  # the cursor color will be the inverse of the cell color.
+  # Colors the cursor will use if `custom_cursor_colors` is true
   cursor:
-    text: '0x000000'
-    cursor: '0xd5c4a1'
+    text: '0x1b2b34'
+    cursor: '0xc0c5ce'
 
   # Normal colors
   normal:
-    black:   '0x3a3a3a'
-    red:     '0xd78787'
-    green:   '0x87af5f'
-    yellow:  '0xd7d7af'
-    blue:    '0x87afd7'
-    magenta: '0xafafd7'
-    cyan:    '0x87d7d7'
-    white:   '0xc6c6c6'
+    black:   '0x1b2b34'
+    red:     '0xec5f67'
+    green:   '0x99c794'
+    yellow:  '0xfac863'
+    blue:    '0x6699cc'
+    magenta: '0xc594c5'
+    cyan:    '0x5fb3b3'
+    white:   '0xc0c5ce'
 
   # Bright colors
   bright:
-    black:   '0x626262'
-    red:     '0xffafaf'
-    green:   '0xafd787'
-    yellow:  '0xd7d787'
-    blue:    '0x87d7ff'
-    magenta: '0xd7afd7'
-    cyan:    '0x5fd7d7'
-    white:   '0xeeeeee'
+    black:   '0x65737e'
+    red:     '0xec5f67'
+    green:   '0x99c794'
+    yellow:  '0xfac863'
+    blue:    '0x6699cc'
+    magenta: '0xc594c5'
+    cyan:    '0x5fb3b3'
+    white:   '0xd8dee9'
 
-  # Dim colors
-  #
-  # If the dim colors are not set, they will be calculated automatically based
-  # on the `normal` colors.
-  #dim:
-  #  black:   '0x333333'
-  #  red:     '0xf2777a'
-  #  green:   '0x99cc99'
-  #  yellow:  '0xffcc66'
-  #  blue:    '0x6699cc'
-  #  magenta: '0xcc99cc'
-  #  cyan:    '0x66cccc'
-  #  white:   '0xdddddd'
-
-  # Indexed Colors
-  #
-  # The indexed colors include all colors from 16 to 256.
-  # When these are not set, they're filled with sensible defaults.
-  #indexed_colors:
-  #  - { index: 16, color: '0x000000' }
+  indexed_colors:
+    - { index: 16, color: '0xf99157' }
+    - { index: 17, color: '0xab7967' }
+    - { index: 18, color: '0x343d46' }
+    - { index: 19, color: '0x4f5b66' }
+    - { index: 20, color: '0xa7adba' }
+    - { index: 21, color: '0xcdd3de' }
 
 # Visual Bell
 #