I am working on some plots and I'd like to combine in them a color gradient with different thickness for the lines.
As a simple example I have written the following code:
Plot[{4 t, 3 t, 2 t, t}, {t, 0, 3}, AxesOrigin -> {0, 0},
FrameLabel -> {"t (years)", "C (mg/l)"}, PlotTheme -> "Scientific",
PerformanceGoal -> "Quality", PlotRange -> Full,
PlotLegends ->
LineLegend[{"P", "N", "DO", "TSS"}, LegendFunction -> Frame],
PlotStyle -> "SolarColors"]
Is there any way to make the first line look thicker than the other ones combining with a color gradient like "SolarColors"?
Thank you in advance for any help!