Quick Sign In:  

Forum: VirtualDJ Skins

Topic: Changing color of Shapes waveforms
WubLyfePRO InfinityMember since 2023
I'd like to change the color of deck 4's waveforms to purple. I've successfully changed all elements of deck 4, but can't find the value for the Shapes waveform. If I select Beats or Colors waveforms, deck 4 is purple as expected. However I use the Shapes waveform style for better visibility of stems. Is there a color value that can be edited for the Shapes waveforms?
 

Posted Fri 07 Jul 23 @ 3:37 pm
Here for the default pro Skin.

1. You must add to all <scratchwave... tags the Colors.
colorVocal="wavevocal" colorInstru="waveinstru" colorBeat="wavebeat" colorNoVocal="wavenovocal" colorNoInstru="wavenoinstru" colorNoBeat="wavenobeat"
example for deck 1

original:

<scratchwave deck="1" orientation="horizontal" color="scratch1" color2="scratch2">
<pos x="0" y="+45+12"/>
<size width="1920" height="43-24"/>
<grid size="1" mainsize="4" height="8" pos="-10" maincolor="deckcolor" color="darkgray" mirrored="true" shapepos="-12" shapemirrored="down"/>
<gridlines width="1" color="darkgray" transparency="0.5"/>
<cue y="-12" height="15">
<mask x="307" y="0" width="15" height="15"/>
<text dx="+12" dy="-2" weight="" fontsize="13" color="texton"/>
</cue>
<overlay>
<pos x="960" y="-12"/>
<size width="1" height="43" />
<background color="needle" shape="square" />
</overlay>
</scratchwave>


change:

<scratchwave deck="1" orientation="horizontal" color="scratch1" color2="scratch2" colorVocal="wavevocal" colorInstru="waveinstru" colorBeat="wavebeat" colorNoVocal="wavenovocal" colorNoInstru="wavenoinstru" colorNoBeat="wavenobeat">
<pos x="0" y="+45+12"/>
<size width="1920" height="43-24"/>
<grid size="1" mainsize="4" height="8" pos="-10" maincolor="deckcolor" color="darkgray" mirrored="true" shapepos="-12" shapemirrored="down"/>
<gridlines width="1" color="darkgray" transparency="0.5"/>
<cue y="-12" height="15">
<mask x="307" y="0" width="15" height="15"/>
<text dx="+12" dy="-2" weight="" fontsize="13" color="texton"/>
</cue>
<overlay>
<pos x="960" y="-12"/>
<size width="1" height="43" />
<background color="needle" shape="square" />
</overlay>
</scratchwave>


Create for the colors define tags (wavevocal, waveinstru, wavebeat, wavenovocal, wavenoinstru, wavenobeat)


<define color="wavevocal" value="#007FBC" deck="1"/>
<define color="wavenovocal" value="#191919" deck="1"/>
<define color="waveinstru" value="#43BFF7" deck="1"/>
<define color="wavenoinstru" value="#3B3B3B" deck="1"/>
<define color="wavebeat" value="#85E2FF" deck="1"/>
<define color="wavenobeat" value="#575757" deck="1"/>



 

Posted Sat 08 Jul 23 @ 6:22 am
WubLyfePRO InfinityMember since 2023
So awesome to see you reply @DENNYO BEATS. I'm actually using your skin now but I assume the same applies!
 

Posted Wed 26 Jul 23 @ 12:12 am