When I write defines, does each define have to be a unique number?

e.g.

Qt Code:
  1. //Colours
  2. #define RED 1
  3. #define BLUE 2
  4.  
  5. //Text Size
  6. #define CAPITAL 1
  7. #define LOWERCASE 2
To copy to clipboard, switch view to plain text mode 

or do you have to make sure that each define has a unique value?