Christian: "if" will nicht gehen

Beitrag lesen

Hallo!
Dieser kleine Text soll bei mit Rest 0 bzw 1 wie beschreiben die Bedingung erfüllen aber es klappt net! Bitte ich brauche dringend hilfe! MfG Christian

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.io.*;

public class Farben{
    static Color AKTIV_COLOR = new Color(224,224,224);
    static Color INAKTIV_COLOR = new Color(238,238,238);
    MuehleUI wechsel;
    if (wechsel ==0 ){ //<-- illegal start of type
        static Color SP1_COLOR = AKTIV_COLOR ;
        static Color SP2_COLOR = INAKTIV_COLOR ;}
    else{
        static Color SP1_COLOR = AKTIV_COLOR ;
        static Color SP2_COLOR = INAKTIV_COLOR;
   }; //<-- <identifier> expected
}