A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

nespalette.scss 438B

123456789101112131415161718192021222324252627
  1. div.NES-palette{
  2. font-size:0.55em;
  3. }
  4. .NES-palette button{
  5. width:2rem;
  6. }
  7. .palette-unit-t, .palette-unit-full{
  8. &.palette-selected{
  9. box-shadow: inset 0px 3px $color-highlight;
  10. }
  11. }
  12. .palette-unit-s, .palette-unit-full{
  13. &.palette-selected{
  14. box-shadow: inset 0px -3px $color-highlight;
  15. }
  16. }
  17. .palette-unit-full{
  18. &.palette-selected{
  19. box-shadow: inset 3px 3px $color-highlight, inset 0px -3px $color-highlight;
  20. }
  21. }