<DynamicSchedule/> the blue should follow an algorithm:
1st blue:
// the gradient is a lighter version of itself (note those are not blue colors below haha)
background: linear-gradient(to bottom, #fcca0e, lighten(#fcca0e, 5%));
2nd blue:
the lighten(#precedingColorBlue)
here are notes from the pattern in current project (which is attempt @ startup for social media)
was easy to hate that it goes from yellow to orange until realizing it should go from yellow to Hothazel orange!
(scrollbar orange or top of post: "24 views, !username" )
also just considered cool algorithm for gradient:
`1st bar: (the gradient is a lighten() version of the same color)`
background: linear-gradient(to bottom, #fcca0e, lighten(#fcca0e, 5%));
2nd bar: (the gradient colors follows the preceding color)
background: linear-gradient(to bottom, #f9db6e, lighten(#fcca0e));
couldn't this be a fun leetcode question lmaoo!!!
for the react native version cuz will probably do cross platform iteration of a non-startup app 1-2x then remake startup-attempt as cross-platform
[12:53pm]
<DynamicSchedule/>
the blue should follow an algorithm: 1st blue: // the gradient is a lighter version of itself (note those are not blue colors below haha) background: linear-gradient(to bottom, #fcca0e, lighten(#fcca0e, 5%));2nd blue: the lighten(#precedingColorBlue)