More Rose Pine shtuff

This commit is contained in:
ThatOneCalculator 2022-07-23 19:49:00 -07:00
parent f7e0c8a4a9
commit eb6c975395
2 changed files with 11 additions and 11 deletions

View File

@ -112,8 +112,8 @@ onMounted(() => {
tension: 0.3,
borderWidth: 2,
borderJoinStyle: 'round',
borderColor: '#00E396',
backgroundColor: alpha('#00E396', 0.1),
borderColor: '#9ccfd8',
backgroundColor: alpha('#9ccfd8', 0.1),
data: [],
}, {
label: 'Active',
@ -121,8 +121,8 @@ onMounted(() => {
tension: 0.3,
borderWidth: 2,
borderJoinStyle: 'round',
borderColor: '#00BCD4',
backgroundColor: alpha('#00BCD4', 0.1),
borderColor: '#31748f',
backgroundColor: alpha('#31748f', 0.1),
data: [],
}, {
label: 'Waiting',
@ -130,8 +130,8 @@ onMounted(() => {
tension: 0.3,
borderWidth: 2,
borderJoinStyle: 'round',
borderColor: '#FFB300',
backgroundColor: alpha('#FFB300', 0.1),
borderColor: '#f6c177',
backgroundColor: alpha('#f6c177', 0.1),
data: [],
}, {
label: 'Delayed',
@ -139,7 +139,7 @@ onMounted(() => {
tension: 0.3,
borderWidth: 2,
borderJoinStyle: 'round',
borderColor: '#E53935',
borderColor: '#eb6f92',
borderDash: [5, 5],
fill: false,
data: [],

View File

@ -98,10 +98,10 @@ const label =
'?' as never;
const color =
props.type === 'process' ? '#00E396' :
props.type === 'active' ? '#00BCD4' :
props.type === 'delayed' ? '#E53935' :
props.type === 'waiting' ? '#FFB300' :
props.type === 'process' ? '#9ccfd8' :
props.type === 'active' ? '#31748f' :
props.type === 'delayed' ? '#eb6f92' :
props.type === 'waiting' ? '#f6c177' :
'?' as never;
onMounted(() => {