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

View File

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