Skip to content

Commit

Permalink
add final overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasoppermann committed Apr 27, 2023
1 parent 5a72652 commit 6ac27ac
Showing 1 changed file with 113 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
$value: '{base.color.blue.4}',
$type: 'color',
mix: {
color: '{base.color.green.5}',
color: '{base.color.blue.5}',
weight: 0.75,
},
},
Expand Down Expand Up @@ -124,18 +124,18 @@
addition: {
bgColor: {
num: {
$value: '{base.color.green.3}',
$value: '{base.color.blue.3}',
$type: 'color',
mix: null,
alpha: 0.4,
},
line: {
$value: '{base.color.green.0}',
$value: '{base.color.blue.0}',
$type: 'color',
alpha: 0.5,
},
word: {
$value: '{base.color.green.3}',
$value: '{base.color.blue.3}',
$type: 'color',
alpha: 0.4,
},
Expand All @@ -144,17 +144,17 @@
deletion: {
bgColor: {
num: {
$value: '{base.color.red.3}',
$value: '{base.color.orange.3}',
$type: 'color',
alpha: 0.4,
},
line: {
$value: '{base.color.red.0}',
$value: '{base.color.orange.0}',
$type: 'color',
alpha: 0.5,
},
word: {
$value: '{base.color.red.2}',
$value: '{base.color.orange.2}',
$type: 'color',
alpha: 0.5,
},
Expand All @@ -175,6 +175,84 @@
},
},
},
button: {
primary: {
bgColor: {
hover: {
$value: '{bgColor.success.emphasis}',
$type: 'color',
mix: {
color: '{base.color.blue.6}',
weight: 0.2,
},
},
active: {
$value: '{bgColor.success.emphasis}',
$type: 'color',
mix: {
color: '{base.color.blue.6}',
weight: 0.4,
},
},
disabled: {
$value: '{base.color.blue.4}',
$type: 'color',
mix: {
color: '{base.color.blue.0}',
weight: 0.6,
},
},
},
shadow: {
selected: {
$value: [
{
color: '{base.color.blue.9}',
alpha: 0.3,
offsetX: '0px',
offsetY: '1px',
blur: '0px',
spread: '0px',
inset: true,
},
],
$type: 'shadow',
},
},
},
danger: {
bgColor: {
hover: {
$value: '{base.color.orange.6}',
$type: 'color',
},
active: {
$value: '{base.color.orange.6}',
$type: 'color',
mix: {
color: '{base.color.orange.8}',
weight: 0.4,
},
},
},
shadow: {
selected: {
$value: [
{
color: '{base.color.orange.9}',
alpha: 0.2,
offsetX: '0px',
offsetY: '1px',
blur: '0px',
spread: '0px',
inset: true,
},
],
$type: 'shadow',
},
},
},
},
color: {
ansi: {
green: {
Expand Down Expand Up @@ -220,6 +298,34 @@
$value: '{base.color.blue.6}',
$type: 'color',
},
brackethighlighter: {
unmatched: {
$value: '{base.color.orange.7}',
$type: 'color',
},
},
markup: {
deleted: {
text: {
$value: '{base.color.orange.7}',
$type: 'color',
},
bg: {
$value: '{base.color.orange.0}',
$type: 'color',
},
},
inserted: {
text: {
$value: '{base.color.blue.6}',
$type: 'color',
},
bg: {
$value: '{base.color.blue.0}',
$type: 'color',
},
},
},
},
},
/**
Expand Down

0 comments on commit 6ac27ac

Please sign in to comment.