@primer/primitives
Advanced tools
Comparing version 0.0.0-e6d856b to 0.0.0-e8e7cfd
@@ -14,2 +14,14 @@ declare const _default: { | ||
}; | ||
auto: { | ||
black: string; | ||
white: string; | ||
gray: string[]; | ||
blue: string[]; | ||
green: string[]; | ||
yellow: string[]; | ||
orange: string[]; | ||
red: string[]; | ||
purple: string[]; | ||
pink: string[]; | ||
}; | ||
text: { | ||
@@ -100,19 +112,23 @@ primary: string; | ||
alert: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
warn: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
error: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
success: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
@@ -254,3 +270,3 @@ }; | ||
}; | ||
icFolder: string; | ||
iconFolder: string; | ||
hlAuthorBg: string; | ||
@@ -275,5 +291,6 @@ hlAuthorBorder: string; | ||
text: string; | ||
icon: string; | ||
inputBg: string; | ||
inputBorder: string; | ||
inputIc: string; | ||
inputIcon: string; | ||
inputPlaceholder: string; | ||
@@ -280,0 +297,0 @@ }; |
@@ -5,2 +5,102 @@ "use strict"; | ||
"scale": { | ||
"black": "#0d1117", | ||
"white": "#ffffff", | ||
"gray": [ | ||
"#f0f6fc", | ||
"#d5dde5", | ||
"#b1bac4", | ||
"#8b949e", | ||
"#6e7681", | ||
"#484f58", | ||
"#30363d", | ||
"#21262d", | ||
"#161b22", | ||
"#0d1117" | ||
], | ||
"blue": [ | ||
"#cae8ff", | ||
"#a1d3ff", | ||
"#75bbff", | ||
"#54a2fb", | ||
"#3f87e9", | ||
"#316ecd", | ||
"#2456aa", | ||
"#0d4189", | ||
"#0b2e63", | ||
"#061e46" | ||
], | ||
"green": [ | ||
"#b2f4b6", | ||
"#81e38a", | ||
"#58ce65", | ||
"#3ab550", | ||
"#2f9a42", | ||
"#248035", | ||
"#1b662d", | ||
"#144d23", | ||
"#0a3818", | ||
"#04260f" | ||
], | ||
"yellow": [ | ||
"#fef3ae", | ||
"#fde15f", | ||
"#f7d232", | ||
"#eec41a", | ||
"#e2b20d", | ||
"#d79e00", | ||
"#c88d00", | ||
"#b67b00", | ||
"#9b6400", | ||
"#7f4e00" | ||
], | ||
"orange": [ | ||
"#ffe0bd", | ||
"#ffc17e", | ||
"#ff9f4c", | ||
"#ed802d", | ||
"#d7661d", | ||
"#ba5010", | ||
"#993d06", | ||
"#782b00", | ||
"#591c00", | ||
"#3d1200" | ||
], | ||
"red": [ | ||
"#ffdcd9", | ||
"#ffbdba", | ||
"#ff9a96", | ||
"#ff7170", | ||
"#ed4e50", | ||
"#d13339", | ||
"#ac212b", | ||
"#88131f", | ||
"#660614", | ||
"#49000c" | ||
], | ||
"purple": [ | ||
"#eadfff", | ||
"#d8beff", | ||
"#c2a0fd", | ||
"#ae81fa", | ||
"#9867f0", | ||
"#804eda", | ||
"#673ab8", | ||
"#512c94", | ||
"#3d2071", | ||
"#29154b" | ||
], | ||
"pink": [ | ||
"#ffdaed", | ||
"#ffb8dd", | ||
"#ff93cc", | ||
"#f56fb7", | ||
"#db579f", | ||
"#bc4186", | ||
"#98316c", | ||
"#762556", | ||
"#55183e", | ||
"#40092d" | ||
] | ||
}, | ||
"auto": { | ||
"black": "#ffffff", | ||
@@ -122,3 +222,3 @@ "white": "#0d1117", | ||
"secondary": "#8b949e", | ||
"tertiary": "#8b949e", | ||
"tertiary": "#484f58", | ||
"info": "#75bbff", | ||
@@ -229,19 +329,23 @@ "danger": "#ed4e50", | ||
"alert": { | ||
"bg": "#0b2e63", | ||
"border": "rgba(117,187,255,0.2)", | ||
"icon": "rgba(117,187,255,0.6)", | ||
"text": "#75bbff", | ||
"icon": "#75bbff", | ||
"bg": "rgba(117,187,255,0.1)", | ||
"border": "rgba(117,187,255,0.4)", | ||
"warn": { | ||
"bg": "#9b6400", | ||
"border": "rgba(253,225,95,0.2)", | ||
"icon": "#fde15f" | ||
"text": "#f2d35b", | ||
"icon": "#f2d35b", | ||
"bg": "rgba(235,196,64,0.1)", | ||
"border": "rgba(235,196,64,0.4)" | ||
}, | ||
"error": { | ||
"bg": "#ffe3e6", | ||
"border": "rgba(255,189,186,0.2)", | ||
"icon": "rgba(255,189,186,0.6)" | ||
"text": "#ff7168", | ||
"icon": "#ff7168", | ||
"bg": "rgba(255,113,112,0.1)", | ||
"border": "rgba(255,113,112,0.4)" | ||
}, | ||
"success": { | ||
"bg": "#81e38a", | ||
"border": "rgba(88,206,101,0.2)", | ||
"icon": "rgba(88,206,101,0.8)" | ||
"text": "#58ce65", | ||
"icon": "#58ce65", | ||
"bg": "rgba(88,206,101,0.1)", | ||
"border": "rgba(88,206,101,0.4)" | ||
} | ||
@@ -475,3 +579,3 @@ }, | ||
}, | ||
"icFolder": "#2456aa", | ||
"iconFolder": "#6e7681", | ||
"hlAuthorBg": "#061e46", | ||
@@ -493,9 +597,10 @@ "hlAuthorBorder": "#0d4189", | ||
"globalNav": { | ||
"logo": "#0d1117", | ||
"bg": "#f0f6fc", | ||
"text": "#0d1117", | ||
"logo": "#f0f6fc", | ||
"bg": "#161b22", | ||
"text": "#f0f6fc", | ||
"icon": "#f0f6fc", | ||
"inputBg": "#0d1117", | ||
"inputBorder": "#0d1117", | ||
"inputIc": "#ffffff", | ||
"inputPlaceholder": "#ffffff" | ||
"inputBorder": "#21262d", | ||
"inputIcon": "#21262d", | ||
"inputPlaceholder": "#484f58" | ||
}, | ||
@@ -502,0 +607,0 @@ "calendarGraph": { |
@@ -15,2 +15,14 @@ declare const _default: { | ||
}; | ||
auto: { | ||
black: string; | ||
white: string; | ||
gray: string[]; | ||
blue: string[]; | ||
green: string[]; | ||
yellow: string[]; | ||
orange: string[]; | ||
red: string[]; | ||
purple: string[]; | ||
pink: string[]; | ||
}; | ||
text: { | ||
@@ -101,19 +113,23 @@ primary: string; | ||
alert: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
warn: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
error: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
success: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
@@ -255,3 +271,3 @@ }; | ||
}; | ||
icFolder: string; | ||
iconFolder: string; | ||
hlAuthorBg: string; | ||
@@ -276,5 +292,6 @@ hlAuthorBorder: string; | ||
text: string; | ||
icon: string; | ||
inputBg: string; | ||
inputBorder: string; | ||
inputIc: string; | ||
inputIcon: string; | ||
inputPlaceholder: string; | ||
@@ -308,2 +325,14 @@ }; | ||
}; | ||
auto: { | ||
black: string; | ||
white: string; | ||
gray: string[]; | ||
blue: string[]; | ||
green: string[]; | ||
yellow: string[]; | ||
orange: string[]; | ||
red: string[]; | ||
purple: string[]; | ||
pink: string[]; | ||
}; | ||
text: { | ||
@@ -394,19 +423,23 @@ primary: string; | ||
alert: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
warn: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
error: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
success: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
@@ -548,3 +581,3 @@ }; | ||
}; | ||
icFolder: string; | ||
iconFolder: string; | ||
hlAuthorBg: string; | ||
@@ -569,5 +602,6 @@ hlAuthorBorder: string; | ||
text: string; | ||
icon: string; | ||
inputBg: string; | ||
inputBorder: string; | ||
inputIc: string; | ||
inputIcon: string; | ||
inputPlaceholder: string; | ||
@@ -574,0 +608,0 @@ }; |
@@ -14,2 +14,14 @@ declare const _default: { | ||
}; | ||
auto: { | ||
black: string; | ||
white: string; | ||
gray: string[]; | ||
blue: string[]; | ||
green: string[]; | ||
yellow: string[]; | ||
orange: string[]; | ||
red: string[]; | ||
purple: string[]; | ||
pink: string[]; | ||
}; | ||
text: { | ||
@@ -100,19 +112,23 @@ primary: string; | ||
alert: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
warn: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
error: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
success: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
@@ -254,3 +270,3 @@ }; | ||
}; | ||
icFolder: string; | ||
iconFolder: string; | ||
hlAuthorBg: string; | ||
@@ -275,5 +291,6 @@ hlAuthorBorder: string; | ||
text: string; | ||
icon: string; | ||
inputBg: string; | ||
inputBorder: string; | ||
inputIc: string; | ||
inputIcon: string; | ||
inputPlaceholder: string; | ||
@@ -280,0 +297,0 @@ }; |
@@ -104,2 +104,102 @@ "use strict"; | ||
}, | ||
"auto": { | ||
"black": "#1b1f23", | ||
"white": "#ffffff", | ||
"gray": [ | ||
"#fafbfc", | ||
"#f6f8fa", | ||
"#e1e4e8", | ||
"#d1d5da", | ||
"#959da5", | ||
"#6a737d", | ||
"#586069", | ||
"#444d56", | ||
"#2f363d", | ||
"#24292e" | ||
], | ||
"blue": [ | ||
"#f1f8ff", | ||
"#dbedff", | ||
"#c8e1ff", | ||
"#79b8ff", | ||
"#2188ff", | ||
"#0366d6", | ||
"#005cc5", | ||
"#044289", | ||
"#032f62", | ||
"#05264c" | ||
], | ||
"green": [ | ||
"#f0fff4", | ||
"#dcffe4", | ||
"#bef5cb", | ||
"#85e89d", | ||
"#34d058", | ||
"#28a745", | ||
"#22863a", | ||
"#176f2c", | ||
"#165c26", | ||
"#144620" | ||
], | ||
"yellow": [ | ||
"#fffdef", | ||
"#fffbdd", | ||
"#fff5b1", | ||
"#ffea7f", | ||
"#ffdf5d", | ||
"#ffd33d", | ||
"#f9c513", | ||
"#dbab09", | ||
"#b08800", | ||
"#735c0f" | ||
], | ||
"orange": [ | ||
"#fff8f2", | ||
"#ffebda", | ||
"#ffd1ac", | ||
"#ffab70", | ||
"#fb8532", | ||
"#f66a0a", | ||
"#e36209", | ||
"#d15704", | ||
"#c24e00", | ||
"#a04100" | ||
], | ||
"red": [ | ||
"#ffeef0", | ||
"#ffdce0", | ||
"#fdaeb7", | ||
"#f97583", | ||
"#ea4a5a", | ||
"#d73a49", | ||
"#cb2431", | ||
"#b31d28", | ||
"#9e1c23", | ||
"#86181d" | ||
], | ||
"purple": [ | ||
"#f5f0ff", | ||
"#e6dcfd", | ||
"#d1bcf9", | ||
"#b392f0", | ||
"#8a63d2", | ||
"#6f42c1", | ||
"#5a32a3", | ||
"#4c2889", | ||
"#3a1d6e", | ||
"#29134e" | ||
], | ||
"pink": [ | ||
"#ffeef8", | ||
"#fedbf0", | ||
"#f9b3dd", | ||
"#f692ce", | ||
"#ec6cb9", | ||
"#ea4aaa", | ||
"#d03592", | ||
"#b93a86", | ||
"#99306f", | ||
"#6d224f" | ||
] | ||
}, | ||
"text": { | ||
@@ -228,19 +328,23 @@ "primary": "#24292e", | ||
"alert": { | ||
"text": "#24292e", | ||
"icon": "rgba(4,66,137,0.6)", | ||
"bg": "#dbedff", | ||
"border": "rgba(4,66,137,0.2)", | ||
"icon": "rgba(4,66,137,0.6)", | ||
"warn": { | ||
"text": "#24292e", | ||
"icon": "#b08800", | ||
"bg": "#fffbdd", | ||
"border": "rgba(176,136,0,0.2)", | ||
"icon": "#b08800" | ||
"border": "rgba(176,136,0,0.2)" | ||
}, | ||
"error": { | ||
"text": "#24292e", | ||
"icon": "rgba(158,28,35,0.6)", | ||
"bg": "#ffe3e6", | ||
"border": "rgba(158,28,35,0.2)", | ||
"icon": "rgba(158,28,35,0.6)" | ||
"border": "rgba(158,28,35,0.2)" | ||
}, | ||
"success": { | ||
"text": "#24292e", | ||
"icon": "rgba(23,111,44,0.8)", | ||
"bg": "#dcffe4", | ||
"border": "rgba(23,111,44,0.2)", | ||
"icon": "rgba(23,111,44,0.8)" | ||
"border": "rgba(23,111,44,0.2)" | ||
} | ||
@@ -474,3 +578,3 @@ }, | ||
}, | ||
"icFolder": "#79b8ff", | ||
"iconFolder": "#79b8ff", | ||
"hlAuthorBg": "#f1f8ff", | ||
@@ -495,6 +599,7 @@ "hlAuthorBorder": "#c8e1ff", | ||
"text": "#ffffff", | ||
"icon": "#ffffff", | ||
"inputBg": "#fafbfc", | ||
"inputBorder": "#fafbfc", | ||
"inputIc": "#1b1f23", | ||
"inputPlaceholder": "#1b1f23" | ||
"inputIcon": "#d1d5da", | ||
"inputPlaceholder": "#959da5" | ||
}, | ||
@@ -501,0 +606,0 @@ "calendarGraph": { |
@@ -16,2 +16,14 @@ declare const _default: { | ||
}; | ||
auto: { | ||
black: string; | ||
white: string; | ||
gray: string[]; | ||
blue: string[]; | ||
green: string[]; | ||
yellow: string[]; | ||
orange: string[]; | ||
red: string[]; | ||
purple: string[]; | ||
pink: string[]; | ||
}; | ||
text: { | ||
@@ -102,19 +114,23 @@ primary: string; | ||
alert: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
warn: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
error: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
success: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
@@ -256,3 +272,3 @@ }; | ||
}; | ||
icFolder: string; | ||
iconFolder: string; | ||
hlAuthorBg: string; | ||
@@ -277,5 +293,6 @@ hlAuthorBorder: string; | ||
text: string; | ||
icon: string; | ||
inputBg: string; | ||
inputBorder: string; | ||
inputIc: string; | ||
inputIcon: string; | ||
inputPlaceholder: string; | ||
@@ -309,2 +326,14 @@ }; | ||
}; | ||
auto: { | ||
black: string; | ||
white: string; | ||
gray: string[]; | ||
blue: string[]; | ||
green: string[]; | ||
yellow: string[]; | ||
orange: string[]; | ||
red: string[]; | ||
purple: string[]; | ||
pink: string[]; | ||
}; | ||
text: { | ||
@@ -395,19 +424,23 @@ primary: string; | ||
alert: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
warn: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
error: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
success: { | ||
text: string; | ||
icon: string; | ||
bg: string; | ||
border: string; | ||
icon: string; | ||
}; | ||
@@ -549,3 +582,3 @@ }; | ||
}; | ||
icFolder: string; | ||
iconFolder: string; | ||
hlAuthorBg: string; | ||
@@ -570,5 +603,6 @@ hlAuthorBorder: string; | ||
text: string; | ||
icon: string; | ||
inputBg: string; | ||
inputBorder: string; | ||
inputIc: string; | ||
inputIcon: string; | ||
inputPlaceholder: string; | ||
@@ -575,0 +609,0 @@ }; |
{ | ||
"scale": { | ||
"black": "#0d1117", | ||
"white": "#ffffff", | ||
"gray": [ | ||
"#f0f6fc", | ||
"#d5dde5", | ||
"#b1bac4", | ||
"#8b949e", | ||
"#6e7681", | ||
"#484f58", | ||
"#30363d", | ||
"#21262d", | ||
"#161b22", | ||
"#0d1117" | ||
], | ||
"blue": [ | ||
"#cae8ff", | ||
"#a1d3ff", | ||
"#75bbff", | ||
"#54a2fb", | ||
"#3f87e9", | ||
"#316ecd", | ||
"#2456aa", | ||
"#0d4189", | ||
"#0b2e63", | ||
"#061e46" | ||
], | ||
"green": [ | ||
"#b2f4b6", | ||
"#81e38a", | ||
"#58ce65", | ||
"#3ab550", | ||
"#2f9a42", | ||
"#248035", | ||
"#1b662d", | ||
"#144d23", | ||
"#0a3818", | ||
"#04260f" | ||
], | ||
"yellow": [ | ||
"#fef3ae", | ||
"#fde15f", | ||
"#f7d232", | ||
"#eec41a", | ||
"#e2b20d", | ||
"#d79e00", | ||
"#c88d00", | ||
"#b67b00", | ||
"#9b6400", | ||
"#7f4e00" | ||
], | ||
"orange": [ | ||
"#ffe0bd", | ||
"#ffc17e", | ||
"#ff9f4c", | ||
"#ed802d", | ||
"#d7661d", | ||
"#ba5010", | ||
"#993d06", | ||
"#782b00", | ||
"#591c00", | ||
"#3d1200" | ||
], | ||
"red": [ | ||
"#ffdcd9", | ||
"#ffbdba", | ||
"#ff9a96", | ||
"#ff7170", | ||
"#ed4e50", | ||
"#d13339", | ||
"#ac212b", | ||
"#88131f", | ||
"#660614", | ||
"#49000c" | ||
], | ||
"purple": [ | ||
"#eadfff", | ||
"#d8beff", | ||
"#c2a0fd", | ||
"#ae81fa", | ||
"#9867f0", | ||
"#804eda", | ||
"#673ab8", | ||
"#512c94", | ||
"#3d2071", | ||
"#29154b" | ||
], | ||
"pink": [ | ||
"#ffdaed", | ||
"#ffb8dd", | ||
"#ff93cc", | ||
"#f56fb7", | ||
"#db579f", | ||
"#bc4186", | ||
"#98316c", | ||
"#762556", | ||
"#55183e", | ||
"#40092d" | ||
] | ||
}, | ||
"auto": { | ||
"black": "#ffffff", | ||
@@ -119,3 +219,3 @@ "white": "#0d1117", | ||
"secondary": "#8b949e", | ||
"tertiary": "#8b949e", | ||
"tertiary": "#484f58", | ||
"info": "#75bbff", | ||
@@ -226,19 +326,23 @@ "danger": "#ed4e50", | ||
"alert": { | ||
"bg": "#0b2e63", | ||
"border": "rgba(117,187,255,0.2)", | ||
"icon": "rgba(117,187,255,0.6)", | ||
"text": "#75bbff", | ||
"icon": "#75bbff", | ||
"bg": "rgba(117,187,255,0.1)", | ||
"border": "rgba(117,187,255,0.4)", | ||
"warn": { | ||
"bg": "#9b6400", | ||
"border": "rgba(253,225,95,0.2)", | ||
"icon": "#fde15f" | ||
"text": "#f2d35b", | ||
"icon": "#f2d35b", | ||
"bg": "rgba(235,196,64,0.1)", | ||
"border": "rgba(235,196,64,0.4)" | ||
}, | ||
"error": { | ||
"bg": "#ffe3e6", | ||
"border": "rgba(255,189,186,0.2)", | ||
"icon": "rgba(255,189,186,0.6)" | ||
"text": "#ff7168", | ||
"icon": "#ff7168", | ||
"bg": "rgba(255,113,112,0.1)", | ||
"border": "rgba(255,113,112,0.4)" | ||
}, | ||
"success": { | ||
"bg": "#81e38a", | ||
"border": "rgba(88,206,101,0.2)", | ||
"icon": "rgba(88,206,101,0.8)" | ||
"text": "#58ce65", | ||
"icon": "#58ce65", | ||
"bg": "rgba(88,206,101,0.1)", | ||
"border": "rgba(88,206,101,0.4)" | ||
} | ||
@@ -472,3 +576,3 @@ }, | ||
}, | ||
"icFolder": "#2456aa", | ||
"iconFolder": "#6e7681", | ||
"hlAuthorBg": "#061e46", | ||
@@ -490,9 +594,10 @@ "hlAuthorBorder": "#0d4189", | ||
"globalNav": { | ||
"logo": "#0d1117", | ||
"bg": "#f0f6fc", | ||
"text": "#0d1117", | ||
"logo": "#f0f6fc", | ||
"bg": "#161b22", | ||
"text": "#f0f6fc", | ||
"icon": "#f0f6fc", | ||
"inputBg": "#0d1117", | ||
"inputBorder": "#0d1117", | ||
"inputIc": "#ffffff", | ||
"inputPlaceholder": "#ffffff" | ||
"inputBorder": "#21262d", | ||
"inputIcon": "#21262d", | ||
"inputPlaceholder": "#484f58" | ||
}, | ||
@@ -499,0 +604,0 @@ "calendarGraph": { |
@@ -102,2 +102,102 @@ { | ||
}, | ||
"auto": { | ||
"black": "#1b1f23", | ||
"white": "#ffffff", | ||
"gray": [ | ||
"#fafbfc", | ||
"#f6f8fa", | ||
"#e1e4e8", | ||
"#d1d5da", | ||
"#959da5", | ||
"#6a737d", | ||
"#586069", | ||
"#444d56", | ||
"#2f363d", | ||
"#24292e" | ||
], | ||
"blue": [ | ||
"#f1f8ff", | ||
"#dbedff", | ||
"#c8e1ff", | ||
"#79b8ff", | ||
"#2188ff", | ||
"#0366d6", | ||
"#005cc5", | ||
"#044289", | ||
"#032f62", | ||
"#05264c" | ||
], | ||
"green": [ | ||
"#f0fff4", | ||
"#dcffe4", | ||
"#bef5cb", | ||
"#85e89d", | ||
"#34d058", | ||
"#28a745", | ||
"#22863a", | ||
"#176f2c", | ||
"#165c26", | ||
"#144620" | ||
], | ||
"yellow": [ | ||
"#fffdef", | ||
"#fffbdd", | ||
"#fff5b1", | ||
"#ffea7f", | ||
"#ffdf5d", | ||
"#ffd33d", | ||
"#f9c513", | ||
"#dbab09", | ||
"#b08800", | ||
"#735c0f" | ||
], | ||
"orange": [ | ||
"#fff8f2", | ||
"#ffebda", | ||
"#ffd1ac", | ||
"#ffab70", | ||
"#fb8532", | ||
"#f66a0a", | ||
"#e36209", | ||
"#d15704", | ||
"#c24e00", | ||
"#a04100" | ||
], | ||
"red": [ | ||
"#ffeef0", | ||
"#ffdce0", | ||
"#fdaeb7", | ||
"#f97583", | ||
"#ea4a5a", | ||
"#d73a49", | ||
"#cb2431", | ||
"#b31d28", | ||
"#9e1c23", | ||
"#86181d" | ||
], | ||
"purple": [ | ||
"#f5f0ff", | ||
"#e6dcfd", | ||
"#d1bcf9", | ||
"#b392f0", | ||
"#8a63d2", | ||
"#6f42c1", | ||
"#5a32a3", | ||
"#4c2889", | ||
"#3a1d6e", | ||
"#29134e" | ||
], | ||
"pink": [ | ||
"#ffeef8", | ||
"#fedbf0", | ||
"#f9b3dd", | ||
"#f692ce", | ||
"#ec6cb9", | ||
"#ea4aaa", | ||
"#d03592", | ||
"#b93a86", | ||
"#99306f", | ||
"#6d224f" | ||
] | ||
}, | ||
"text": { | ||
@@ -226,19 +326,23 @@ "primary": "#24292e", | ||
"alert": { | ||
"text": "#24292e", | ||
"icon": "rgba(4,66,137,0.6)", | ||
"bg": "#dbedff", | ||
"border": "rgba(4,66,137,0.2)", | ||
"icon": "rgba(4,66,137,0.6)", | ||
"warn": { | ||
"text": "#24292e", | ||
"icon": "#b08800", | ||
"bg": "#fffbdd", | ||
"border": "rgba(176,136,0,0.2)", | ||
"icon": "#b08800" | ||
"border": "rgba(176,136,0,0.2)" | ||
}, | ||
"error": { | ||
"text": "#24292e", | ||
"icon": "rgba(158,28,35,0.6)", | ||
"bg": "#ffe3e6", | ||
"border": "rgba(158,28,35,0.2)", | ||
"icon": "rgba(158,28,35,0.6)" | ||
"border": "rgba(158,28,35,0.2)" | ||
}, | ||
"success": { | ||
"text": "#24292e", | ||
"icon": "rgba(23,111,44,0.8)", | ||
"bg": "#dcffe4", | ||
"border": "rgba(23,111,44,0.2)", | ||
"icon": "rgba(23,111,44,0.8)" | ||
"border": "rgba(23,111,44,0.2)" | ||
} | ||
@@ -472,3 +576,3 @@ }, | ||
}, | ||
"icFolder": "#79b8ff", | ||
"iconFolder": "#79b8ff", | ||
"hlAuthorBg": "#f1f8ff", | ||
@@ -493,6 +597,7 @@ "hlAuthorBorder": "#c8e1ff", | ||
"text": "#ffffff", | ||
"icon": "#ffffff", | ||
"inputBg": "#fafbfc", | ||
"inputBorder": "#fafbfc", | ||
"inputIc": "#1b1f23", | ||
"inputPlaceholder": "#1b1f23" | ||
"inputIcon": "#d1d5da", | ||
"inputPlaceholder": "#959da5" | ||
}, | ||
@@ -499,0 +604,0 @@ "calendarGraph": { |
export default { | ||
"scale": { | ||
"black": "#0d1117", | ||
"white": "#ffffff", | ||
"gray": [ | ||
"#f0f6fc", | ||
"#d5dde5", | ||
"#b1bac4", | ||
"#8b949e", | ||
"#6e7681", | ||
"#484f58", | ||
"#30363d", | ||
"#21262d", | ||
"#161b22", | ||
"#0d1117" | ||
], | ||
"blue": [ | ||
"#cae8ff", | ||
"#a1d3ff", | ||
"#75bbff", | ||
"#54a2fb", | ||
"#3f87e9", | ||
"#316ecd", | ||
"#2456aa", | ||
"#0d4189", | ||
"#0b2e63", | ||
"#061e46" | ||
], | ||
"green": [ | ||
"#b2f4b6", | ||
"#81e38a", | ||
"#58ce65", | ||
"#3ab550", | ||
"#2f9a42", | ||
"#248035", | ||
"#1b662d", | ||
"#144d23", | ||
"#0a3818", | ||
"#04260f" | ||
], | ||
"yellow": [ | ||
"#fef3ae", | ||
"#fde15f", | ||
"#f7d232", | ||
"#eec41a", | ||
"#e2b20d", | ||
"#d79e00", | ||
"#c88d00", | ||
"#b67b00", | ||
"#9b6400", | ||
"#7f4e00" | ||
], | ||
"orange": [ | ||
"#ffe0bd", | ||
"#ffc17e", | ||
"#ff9f4c", | ||
"#ed802d", | ||
"#d7661d", | ||
"#ba5010", | ||
"#993d06", | ||
"#782b00", | ||
"#591c00", | ||
"#3d1200" | ||
], | ||
"red": [ | ||
"#ffdcd9", | ||
"#ffbdba", | ||
"#ff9a96", | ||
"#ff7170", | ||
"#ed4e50", | ||
"#d13339", | ||
"#ac212b", | ||
"#88131f", | ||
"#660614", | ||
"#49000c" | ||
], | ||
"purple": [ | ||
"#eadfff", | ||
"#d8beff", | ||
"#c2a0fd", | ||
"#ae81fa", | ||
"#9867f0", | ||
"#804eda", | ||
"#673ab8", | ||
"#512c94", | ||
"#3d2071", | ||
"#29154b" | ||
], | ||
"pink": [ | ||
"#ffdaed", | ||
"#ffb8dd", | ||
"#ff93cc", | ||
"#f56fb7", | ||
"#db579f", | ||
"#bc4186", | ||
"#98316c", | ||
"#762556", | ||
"#55183e", | ||
"#40092d" | ||
] | ||
}, | ||
"auto": { | ||
"black": "#ffffff", | ||
@@ -119,3 +219,3 @@ "white": "#0d1117", | ||
"secondary": "#8b949e", | ||
"tertiary": "#8b949e", | ||
"tertiary": "#484f58", | ||
"info": "#75bbff", | ||
@@ -226,19 +326,23 @@ "danger": "#ed4e50", | ||
"alert": { | ||
"bg": "#0b2e63", | ||
"border": "rgba(117,187,255,0.2)", | ||
"icon": "rgba(117,187,255,0.6)", | ||
"text": "#75bbff", | ||
"icon": "#75bbff", | ||
"bg": "rgba(117,187,255,0.1)", | ||
"border": "rgba(117,187,255,0.4)", | ||
"warn": { | ||
"bg": "#9b6400", | ||
"border": "rgba(253,225,95,0.2)", | ||
"icon": "#fde15f" | ||
"text": "#f2d35b", | ||
"icon": "#f2d35b", | ||
"bg": "rgba(235,196,64,0.1)", | ||
"border": "rgba(235,196,64,0.4)" | ||
}, | ||
"error": { | ||
"bg": "#ffe3e6", | ||
"border": "rgba(255,189,186,0.2)", | ||
"icon": "rgba(255,189,186,0.6)" | ||
"text": "#ff7168", | ||
"icon": "#ff7168", | ||
"bg": "rgba(255,113,112,0.1)", | ||
"border": "rgba(255,113,112,0.4)" | ||
}, | ||
"success": { | ||
"bg": "#81e38a", | ||
"border": "rgba(88,206,101,0.2)", | ||
"icon": "rgba(88,206,101,0.8)" | ||
"text": "#58ce65", | ||
"icon": "#58ce65", | ||
"bg": "rgba(88,206,101,0.1)", | ||
"border": "rgba(88,206,101,0.4)" | ||
} | ||
@@ -472,3 +576,3 @@ }, | ||
}, | ||
"icFolder": "#2456aa", | ||
"iconFolder": "#6e7681", | ||
"hlAuthorBg": "#061e46", | ||
@@ -490,9 +594,10 @@ "hlAuthorBorder": "#0d4189", | ||
"globalNav": { | ||
"logo": "#0d1117", | ||
"bg": "#f0f6fc", | ||
"text": "#0d1117", | ||
"logo": "#f0f6fc", | ||
"bg": "#161b22", | ||
"text": "#f0f6fc", | ||
"icon": "#f0f6fc", | ||
"inputBg": "#0d1117", | ||
"inputBorder": "#0d1117", | ||
"inputIc": "#ffffff", | ||
"inputPlaceholder": "#ffffff" | ||
"inputBorder": "#21262d", | ||
"inputIcon": "#21262d", | ||
"inputPlaceholder": "#484f58" | ||
}, | ||
@@ -499,0 +604,0 @@ "calendarGraph": { |
@@ -102,2 +102,102 @@ export default { | ||
}, | ||
"auto": { | ||
"black": "#1b1f23", | ||
"white": "#ffffff", | ||
"gray": [ | ||
"#fafbfc", | ||
"#f6f8fa", | ||
"#e1e4e8", | ||
"#d1d5da", | ||
"#959da5", | ||
"#6a737d", | ||
"#586069", | ||
"#444d56", | ||
"#2f363d", | ||
"#24292e" | ||
], | ||
"blue": [ | ||
"#f1f8ff", | ||
"#dbedff", | ||
"#c8e1ff", | ||
"#79b8ff", | ||
"#2188ff", | ||
"#0366d6", | ||
"#005cc5", | ||
"#044289", | ||
"#032f62", | ||
"#05264c" | ||
], | ||
"green": [ | ||
"#f0fff4", | ||
"#dcffe4", | ||
"#bef5cb", | ||
"#85e89d", | ||
"#34d058", | ||
"#28a745", | ||
"#22863a", | ||
"#176f2c", | ||
"#165c26", | ||
"#144620" | ||
], | ||
"yellow": [ | ||
"#fffdef", | ||
"#fffbdd", | ||
"#fff5b1", | ||
"#ffea7f", | ||
"#ffdf5d", | ||
"#ffd33d", | ||
"#f9c513", | ||
"#dbab09", | ||
"#b08800", | ||
"#735c0f" | ||
], | ||
"orange": [ | ||
"#fff8f2", | ||
"#ffebda", | ||
"#ffd1ac", | ||
"#ffab70", | ||
"#fb8532", | ||
"#f66a0a", | ||
"#e36209", | ||
"#d15704", | ||
"#c24e00", | ||
"#a04100" | ||
], | ||
"red": [ | ||
"#ffeef0", | ||
"#ffdce0", | ||
"#fdaeb7", | ||
"#f97583", | ||
"#ea4a5a", | ||
"#d73a49", | ||
"#cb2431", | ||
"#b31d28", | ||
"#9e1c23", | ||
"#86181d" | ||
], | ||
"purple": [ | ||
"#f5f0ff", | ||
"#e6dcfd", | ||
"#d1bcf9", | ||
"#b392f0", | ||
"#8a63d2", | ||
"#6f42c1", | ||
"#5a32a3", | ||
"#4c2889", | ||
"#3a1d6e", | ||
"#29134e" | ||
], | ||
"pink": [ | ||
"#ffeef8", | ||
"#fedbf0", | ||
"#f9b3dd", | ||
"#f692ce", | ||
"#ec6cb9", | ||
"#ea4aaa", | ||
"#d03592", | ||
"#b93a86", | ||
"#99306f", | ||
"#6d224f" | ||
] | ||
}, | ||
"text": { | ||
@@ -226,19 +326,23 @@ "primary": "#24292e", | ||
"alert": { | ||
"text": "#24292e", | ||
"icon": "rgba(4,66,137,0.6)", | ||
"bg": "#dbedff", | ||
"border": "rgba(4,66,137,0.2)", | ||
"icon": "rgba(4,66,137,0.6)", | ||
"warn": { | ||
"text": "#24292e", | ||
"icon": "#b08800", | ||
"bg": "#fffbdd", | ||
"border": "rgba(176,136,0,0.2)", | ||
"icon": "#b08800" | ||
"border": "rgba(176,136,0,0.2)" | ||
}, | ||
"error": { | ||
"text": "#24292e", | ||
"icon": "rgba(158,28,35,0.6)", | ||
"bg": "#ffe3e6", | ||
"border": "rgba(158,28,35,0.2)", | ||
"icon": "rgba(158,28,35,0.6)" | ||
"border": "rgba(158,28,35,0.2)" | ||
}, | ||
"success": { | ||
"text": "#24292e", | ||
"icon": "rgba(23,111,44,0.8)", | ||
"bg": "#dcffe4", | ||
"border": "rgba(23,111,44,0.2)", | ||
"icon": "rgba(23,111,44,0.8)" | ||
"border": "rgba(23,111,44,0.2)" | ||
} | ||
@@ -472,3 +576,3 @@ }, | ||
}, | ||
"icFolder": "#79b8ff", | ||
"iconFolder": "#79b8ff", | ||
"hlAuthorBg": "#f1f8ff", | ||
@@ -493,6 +597,7 @@ "hlAuthorBorder": "#c8e1ff", | ||
"text": "#ffffff", | ||
"icon": "#ffffff", | ||
"inputBg": "#fafbfc", | ||
"inputBorder": "#fafbfc", | ||
"inputIc": "#1b1f23", | ||
"inputPlaceholder": "#1b1f23" | ||
"inputIcon": "#d1d5da", | ||
"inputPlaceholder": "#959da5" | ||
}, | ||
@@ -499,0 +604,0 @@ "calendarGraph": { |
{ | ||
"name": "@primer/primitives", | ||
"version": "0.0.0-e6d856b", | ||
"version": "0.0.0-e8e7cfd", | ||
"description": "Typography, spacing, and color primitives for Primer design system", | ||
@@ -5,0 +5,0 @@ "files": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
167183
5685
0