This example will show how to use the palette command.  
                                                
                        source
                        compile
                        sandbox
                        issues?
                        back to examples
                        
    BITMAP ENABLE(16)
    CLS BLACK
    PALETTE RGB($00,$00,$00), RGB($11,$11,$11), RGB($22,$22,$22), RGB($33,$33,$33), _
            RGB($44,$44,$44), RGB($55,$55,$55), RGB($66,$66,$66), RGB($77,$77,$77), _
            RGB($88,$88,$88), RGB($99,$99,$99), RGB($AA,$AA,$AA), RGB($BB,$BB,$BB), _
            RGB($CC,$CC,$CC), RGB($DD,$DD,$DD), RGB($EE,$EE,$EE), RGB($FF,$FF,$FF)
    FOR x = 0 TO SCREEN WIDTH - 1
        color = ( x / ( SCREEN WIDTH / SCREEN COLORS ) )
        FOR y = 0 TO ( SCREEN HEIGHT - 1 )
            PLOT x, y, color
        NEXT 
    NEXT
                    
                        The instructions here refer to compiling the example from the command line. For Microsoft Windows 
                        users we suggest using UGBASIC-IDE, which allows 
                        you to download and compile each single example with just one click.
                        
                                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
        
  
  Are instructions for your specific home computer / console missing? First of all, check if your computer
  is supported by clicking here. If so, since ugBASIC is a language which does not provide abstractions, it is possible 
  that this example will not work on your target. If you think this is an issue, please click here.
                        
                            In order to compile the example, type this command on the command line:
                        
                        Linux
                        ugbc.cpc -O dsk -o graphics_color_04.dsk graphics_color_04.bas
                        
                        Windows
                        ugbc.cpc.exe -O dsk -o graphics_color_04.dsk graphics_color_04.bas
                        
                        For Microsoft Windows users we suggest using UGBASIC-IDE, which allows 
                        you to download and compile this example with just one click.
                        
                            In order to compile the example, type this command on the command line:
                        
                        Linux
                        ugbc.atarixl -O xex -o graphics_color_04.xex graphics_color_04.bas
                        
                        Windows
                        ugbc.atarixl.exe -O xex -o graphics_color_04.xex graphics_color_04.bas
                        
                        For Microsoft Windows users we suggest using UGBASIC-IDE, which allows 
                        you to download and compile this example with just one click.
                        
                            In order to compile the example, type this command on the command line:
                        
                        Linux
                        ugbc.atari -O xex -o graphics_color_04.xex graphics_color_04.bas
                        
                        Windows
                        ugbc.atari.exe -O xex -o graphics_color_04.xex graphics_color_04.bas
                        
                        For Microsoft Windows users we suggest using UGBASIC-IDE, which allows 
                        you to download and compile this example with just one click.
                        
                            In order to compile the example, type this command on the command line:
                        
                        Linux
                        ugbc.coleco -O rom -o graphics_color_04.rom graphics_color_04.bas
                        
                        Windows
                        ugbc.coleco.exe -O rom -o graphics_color_04.rom graphics_color_04.bas
                        
                        For Microsoft Windows users we suggest using UGBASIC-IDE, which allows 
                        you to download and compile this example with just one click.
                        
                            In order to compile the example, type this command on the command line:
                        
                        Linux
                        ugbc.c128 -O prg -o graphics_color_04.prg graphics_color_04.bas
                        
                        Windows
                        ugbc.c128.exe -O prg -o graphics_color_04.prg graphics_color_04.bas
                        
                        For Microsoft Windows users we suggest using UGBASIC-IDE, which allows 
                        you to download and compile this example with just one click.
                        
                            In order to compile the example, type this command on the command line:
                        
                        Linux
                        ugbc.c64 -O prg -o graphics_color_04.prg graphics_color_04.bas
                        
                        Windows
                        ugbc.c64.exe -O prg -o graphics_color_04.prg graphics_color_04.bas
                        
                        For Microsoft Windows users we suggest using UGBASIC-IDE, which allows 
                        you to download and compile this example with just one click.
                        
                            In order to compile the example, type this command on the command line:
                        
                        Linux
                        ugbc.sc3000 -O rom -o graphics_color_04.rom graphics_color_04.bas
                        
                        Windows
                        ugbc.sc3000.exe -O rom -o graphics_color_04.rom graphics_color_04.bas
                        
                        For Microsoft Windows users we suggest using UGBASIC-IDE, which allows 
                        you to download and compile this example with just one click.
                        
                            In order to compile the example, type this command on the command line:
                        
                        Linux
                        ugbc.sg1000 -O rom -o graphics_color_04.rom graphics_color_04.bas
                        
                        Windows
                        ugbc.sg1000.exe -O rom -o graphics_color_04.rom graphics_color_04.bas
                        
                        For Microsoft Windows users we suggest using UGBASIC-IDE, which allows 
                        you to download and compile this example with just one click.
                        
                        If you have found a problem trying to run this example, if you think there is a bug or, more 
                        simply, you would like it to be improved, open an issue for this example on GitHub. 
                        Thank you!
                        
                        open an issue
                        BACK TO EXAMPLES
                        
