Skip to content

Commit 6fe8707

Browse files
committed
Added Arduino-inspired theme
1 parent 7fd7ce9 commit 6fe8707

File tree

10 files changed

+493
-182
lines changed

10 files changed

+493
-182
lines changed

base16/README.md

Lines changed: 182 additions & 182 deletions
Large diffs are not rendered by default.

base16/base16_arduino_dark.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Base16 Arduino Dark - inspired by the Arduino IDE color palette
2+
# Note: This is an unofficial theme. Arduino is a trademark of Arduino SA.
3+
# This theme is not affiliated with or endorsed by Arduino.
4+
accent: "#00D3CF"
5+
background: "#0D1B1E"
6+
details: darker
7+
foreground: "#B2EBF2"
8+
terminal_colors:
9+
bright:
10+
black: "#4A5F61"
11+
blue: "#80DEEA"
12+
cyan: "#00838F"
13+
green: "#004D52"
14+
magenta: "#006064"
15+
red: "#00BCD4"
16+
white: "#E0F7FA"
17+
yellow: "#00ACC1"
18+
normal:
19+
black: "#0D1B1E"
20+
blue: "#00BCD4"
21+
cyan: "#00E5CC"
22+
green: "#00897B"
23+
magenta: "#26C6DA"
24+
red: "#FF5252"
25+
white: "#B2EBF2"
26+
yellow: "#00838F"

base16/base16_arduino_light.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Base16 Arduino Light - inspired by the Arduino IDE color palette
2+
# Note: This is an unofficial theme. Arduino is a trademark of Arduino SA.
3+
# This theme is not affiliated with or endorsed by Arduino.
4+
accent: "#00979D"
5+
background: "#F0FEFF"
6+
details: lighter
7+
foreground: "#006064"
8+
terminal_colors:
9+
bright:
10+
black: "#37474F"
11+
blue: "#E0F7FA"
12+
cyan: "#00838F"
13+
green: "#B2DFDB"
14+
magenta: "#B2EBF2"
15+
red: "#00BCD4"
16+
white: "#004D52"
17+
yellow: "#80DEEA"
18+
normal:
19+
black: "#F0FEFF"
20+
blue: "#0097A7"
21+
cyan: "#00BFA5"
22+
green: "#00897B"
23+
magenta: "#00ACC1"
24+
red: "#D32F2F"
25+
white: "#006064"
26+
yellow: "#00838F"
Lines changed: 51 additions & 0 deletions
Loading
Lines changed: 51 additions & 0 deletions
Loading

standard/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
|**[Apple Dark](apple_dark.yaml)**:|<img src='previews/apple_dark.yaml.svg' width='300'>|
55
|**[Apple Light](apple_light.yaml)**:|<img src='previews/apple_light.yaml.svg' width='300'>|
66
|**[Arc Dark](arc_dark.yaml)**:|<img src='previews/arc_dark.yaml.svg' width='300'>|
7+
|**[Arduino Dark](arduino_dark.yaml)**:|<img src='previews/arduino_dark.yaml.svg' width='300'>|
8+
|**[Arduino Light](arduino_light.yaml)**:|<img src='previews/arduino_light.yaml.svg' width='300'>|
79
|**[Argonaut](argonaut.yaml)**:|<img src='previews/argonaut.yaml.svg' width='300'>|
810
|**[Avirage](avirage.yaml)**:|<img src='previews/avirage.yaml.svg' width='300'>|
911
|**[Ayu Dark](ayu_dark.yaml)**:|<img src='previews/ayu_dark.yaml.svg' width='300'>|
@@ -75,6 +77,7 @@
7577
|**[Night Owl](night_owl.yaml)**:|<img src='previews/night_owl.yaml.svg' width='300'>|
7678
|**[Nightfly](nightfly.yaml)**:|<img src='previews/nightfly.yaml.svg' width='300'>|
7779
|**[Nord](nord.yaml)**:|<img src='previews/nord.yaml.svg' width='300'>|
80+
|**[Nord Light](nord_light.yaml)**:|<img src='previews/nord_light.yaml.svg' width='300'>|
7881
|**[Oceanic Next](oceanic_next.yaml)**:|<img src='previews/oceanic_next.yaml.svg' width='300'>|
7982
|**[Omni](omni.yaml)**:|<img src='previews/omni.yaml.svg' width='300'>|
8083
|**[One Dark](one_dark.yaml)**:|<img src='previews/one_dark.yaml.svg' width='300'>|

standard/arduino_dark.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Arduino Dark Theme - inspired by the Arduino IDE color palette
2+
# Note: This is an unofficial theme. Arduino is a trademark of Arduino SA.
3+
# This theme is not affiliated with or endorsed by Arduino.
4+
accent: "#00D3CF" # Bright Arduino cyan
5+
background: "#0D1B1E" # Dark teal-black background
6+
details: darker
7+
foreground: "#B2EBF2" # Light cyan for text
8+
terminal_colors:
9+
bright:
10+
black: "#4A5F61" # Teal-tinted dark gray
11+
blue: "#00BCD4" # Bright teal-cyan
12+
cyan: "#00E5FF" # Bright Arduino cyan
13+
green: "#00E5CC" # Bright teal-green
14+
magenta: "#26C6DA" # Bright teal
15+
red: "#FF5252" # Bright red (Arduino error color)
16+
white: "#E0F7FA" # Cyan-tinted white
17+
yellow: "#26C6DA" # Bright cyan
18+
normal:
19+
black: "#263238" # Dark blue-gray
20+
blue: "#00ACC1" # Teal-cyan blue
21+
cyan: "#00979D" # Arduino teal
22+
green: "#00897B" # Dark teal-green
23+
magenta: "#0097A7" # Standard teal
24+
red: "#E57373" # Soft red for errors
25+
white: "#B2DFDB" # Teal-tinted light gray
26+
yellow: "#00838F" # Dark cyan

standard/arduino_light.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Arduino Light Theme - inspired by the Arduino IDE color palette
2+
# Note: This is an unofficial theme. Arduino is a trademark of Arduino SA.
3+
# This theme is not affiliated with or endorsed by Arduino.
4+
accent: "#00979D" # Arduino teal/cyan brand color
5+
background: "#F0FEFF" # Subtle teal-tinted white background
6+
details: lighter
7+
foreground: "#006064" # Dark teal for text
8+
terminal_colors:
9+
bright:
10+
black: "#5F7C7E" # Teal-tinted gray
11+
blue: "#0097A7" # Teal-leaning blue
12+
cyan: "#00E5FF" # Bright Arduino cyan
13+
green: "#00BFA5" # Teal-green
14+
magenta: "#00ACC1" # Teal-magenta instead of red
15+
red: "#E54747" # Bright red (Arduino error color)
16+
white: "#FFFFFF" # White
17+
yellow: "#00BCD4" # Cyan-yellow for more teal
18+
normal:
19+
black: "#37474F" # Blue-gray
20+
blue: "#0097A7" # Teal-cyan blue
21+
cyan: "#00979D" # Arduino teal
22+
green: "#00897B" # Teal-green
23+
magenta: "#0097A7" # Teal instead of red-magenta
24+
red: "#D32F2F" # Red for errors
25+
white: "#E0F7FA" # Cyan-tinted white
26+
yellow: "#00838F" # Dark cyan for warnings
Lines changed: 51 additions & 0 deletions
Loading
Lines changed: 51 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)