int red=252;
int green=132;
int blue=3;
//The above values are given based on the color picker values you can google it
//Pin number declarations
int p1=5;
int p2=6;
int p3=9;
void setup() {
// put your setup code here, to run once:
pinMode(red, OUTPUT);
pinMode(green, OUTPUT);
pinMode(blue, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
analogWrite(p1,red);
analogWrite(p2,green);
analogWrite(p2,blue);
}