Palettes / Fading 16

Fading 16 by CopheeMoth

Reimagining of the Lost Century palette.

🦀 Rust

#![no_std]
#![no_main]
use firefly_rust::*;

#[unsafe(no_mangle)]
extern "C" fn boot() {
    set_colors();
}

fn set_colors() {
    // https://lospec.com/palette-list/fading-16
    set_color(Color::from(1), RGB::new(0xdd, 0xcf, 0x99));
    set_color(Color::from(2), RGB::new(0xcc, 0xa8, 0x7b));
    set_color(Color::from(3), RGB::new(0xb9, 0x7a, 0x60));
    set_color(Color::from(4), RGB::new(0x9c, 0x52, 0x4e));
    set_color(Color::from(5), RGB::new(0x77, 0x42, 0x51));
    set_color(Color::from(6), RGB::new(0x4b, 0x3d, 0x44));
    set_color(Color::from(7), RGB::new(0x4e, 0x54, 0x63));
    set_color(Color::from(8), RGB::new(0x5b, 0x7d, 0x73));
    set_color(Color::from(9), RGB::new(0x8e, 0x9f, 0x7d));
    set_color(Color::from(10), RGB::new(0x64, 0x53, 0x55));
    set_color(Color::from(11), RGB::new(0x8c, 0x7c, 0x79));
    set_color(Color::from(12), RGB::new(0xa9, 0x9c, 0x8d));
    set_color(Color::from(13), RGB::new(0x7d, 0x7b, 0x62));
    set_color(Color::from(14), RGB::new(0xaa, 0xa2, 0x5d));
    set_color(Color::from(15), RGB::new(0x84, 0x6d, 0x59));
    set_color(Color::from(16), RGB::new(0xa8, 0x8a, 0x5e));
}

🏃 Go

package main

import "github.com/firefly-zero/firefly-go/firefly"

func init() {
    firefly.Boot = boot
}

func boot() {
    setColors()
}

func setColors() {
    // https://lospec.com/palette-list/fading-16
    firefly.SetColor(1, firefly.RGB{R: 0xdd, G: 0xcf, B: 0x99})
    firefly.SetColor(2, firefly.RGB{R: 0xcc, G: 0xa8, B: 0x7b})
    firefly.SetColor(3, firefly.RGB{R: 0xb9, G: 0x7a, B: 0x60})
    firefly.SetColor(4, firefly.RGB{R: 0x9c, G: 0x52, B: 0x4e})
    firefly.SetColor(5, firefly.RGB{R: 0x77, G: 0x42, B: 0x51})
    firefly.SetColor(6, firefly.RGB{R: 0x4b, G: 0x3d, B: 0x44})
    firefly.SetColor(7, firefly.RGB{R: 0x4e, G: 0x54, B: 0x63})
    firefly.SetColor(8, firefly.RGB{R: 0x5b, G: 0x7d, B: 0x73})
    firefly.SetColor(9, firefly.RGB{R: 0x8e, G: 0x9f, B: 0x7d})
    firefly.SetColor(10, firefly.RGB{R: 0x64, G: 0x53, B: 0x55})
    firefly.SetColor(11, firefly.RGB{R: 0x8c, G: 0x7c, B: 0x79})
    firefly.SetColor(12, firefly.RGB{R: 0xa9, G: 0x9c, B: 0x8d})
    firefly.SetColor(13, firefly.RGB{R: 0x7d, G: 0x7b, B: 0x62})
    firefly.SetColor(14, firefly.RGB{R: 0xaa, G: 0xa2, B: 0x5d})
    firefly.SetColor(15, firefly.RGB{R: 0x84, G: 0x6d, B: 0x59})
    firefly.SetColor(16, firefly.RGB{R: 0xa8, G: 0x8a, B: 0x5e})
}

⚡️ Zig

const ff = @import("firefly");

pub export fn update() void {
    setColors()
}

fn setColors() void {
    // https://lospec.com/palette-list/fading-16
    ff.setColor(@enumFromInt(1), ff.RGB{.r = 0xdd, .g = 0xcf, .b = 0x99});
    ff.setColor(@enumFromInt(2), ff.RGB{.r = 0xcc, .g = 0xa8, .b = 0x7b});
    ff.setColor(@enumFromInt(3), ff.RGB{.r = 0xb9, .g = 0x7a, .b = 0x60});
    ff.setColor(@enumFromInt(4), ff.RGB{.r = 0x9c, .g = 0x52, .b = 0x4e});
    ff.setColor(@enumFromInt(5), ff.RGB{.r = 0x77, .g = 0x42, .b = 0x51});
    ff.setColor(@enumFromInt(6), ff.RGB{.r = 0x4b, .g = 0x3d, .b = 0x44});
    ff.setColor(@enumFromInt(7), ff.RGB{.r = 0x4e, .g = 0x54, .b = 0x63});
    ff.setColor(@enumFromInt(8), ff.RGB{.r = 0x5b, .g = 0x7d, .b = 0x73});
    ff.setColor(@enumFromInt(9), ff.RGB{.r = 0x8e, .g = 0x9f, .b = 0x7d});
    ff.setColor(@enumFromInt(10), ff.RGB{.r = 0x64, .g = 0x53, .b = 0x55});
    ff.setColor(@enumFromInt(11), ff.RGB{.r = 0x8c, .g = 0x7c, .b = 0x79});
    ff.setColor(@enumFromInt(12), ff.RGB{.r = 0xa9, .g = 0x9c, .b = 0x8d});
    ff.setColor(@enumFromInt(13), ff.RGB{.r = 0x7d, .g = 0x7b, .b = 0x62});
    ff.setColor(@enumFromInt(14), ff.RGB{.r = 0xaa, .g = 0xa2, .b = 0x5d});
    ff.setColor(@enumFromInt(15), ff.RGB{.r = 0x84, .g = 0x6d, .b = 0x59});
    ff.setColor(@enumFromInt(16), ff.RGB{.r = 0xa8, .g = 0x8a, .b = 0x5e});
}

🐀 C

#include "./vendor/firefly/firefly.c"

BOOT void boot()
{
    set_colors();
}

void set_colors()
{
    // https://lospec.com/palette-list/fading-16
    RGB color1 = {0xdd, 0xcf, 0x99};
    set_color(1, color1);
    RGB color2 = {0xcc, 0xa8, 0x7b};
    set_color(2, color2);
    RGB color3 = {0xb9, 0x7a, 0x60};
    set_color(3, color3);
    RGB color4 = {0x9c, 0x52, 0x4e};
    set_color(4, color4);
    RGB color5 = {0x77, 0x42, 0x51};
    set_color(5, color5);
    RGB color6 = {0x4b, 0x3d, 0x44};
    set_color(6, color6);
    RGB color7 = {0x4e, 0x54, 0x63};
    set_color(7, color7);
    RGB color8 = {0x5b, 0x7d, 0x73};
    set_color(8, color8);
    RGB color9 = {0x8e, 0x9f, 0x7d};
    set_color(9, color9);
    RGB color10 = {0x64, 0x53, 0x55};
    set_color(10, color10);
    RGB color11 = {0x8c, 0x7c, 0x79};
    set_color(11, color11);
    RGB color12 = {0xa9, 0x9c, 0x8d};
    set_color(12, color12);
    RGB color13 = {0x7d, 0x7b, 0x62};
    set_color(13, color13);
    RGB color14 = {0xaa, 0xa2, 0x5d};
    set_color(14, color14);
    RGB color15 = {0x84, 0x6d, 0x59};
    set_color(15, color15);
    RGB color16 = {0xa8, 0x8a, 0x5e};
    set_color(16, color16);
}

➕ C++

#include "./vendor/firefly/firefly.c"

BOOT void boot()
{
    set_colors();
}

void set_colors()
{
    // https://lospec.com/palette-list/fading-16
    set_color(1, {0xdd, 0xcf, 0x99});
    set_color(2, {0xcc, 0xa8, 0x7b});
    set_color(3, {0xb9, 0x7a, 0x60});
    set_color(4, {0x9c, 0x52, 0x4e});
    set_color(5, {0x77, 0x42, 0x51});
    set_color(6, {0x4b, 0x3d, 0x44});
    set_color(7, {0x4e, 0x54, 0x63});
    set_color(8, {0x5b, 0x7d, 0x73});
    set_color(9, {0x8e, 0x9f, 0x7d});
    set_color(10, {0x64, 0x53, 0x55});
    set_color(11, {0x8c, 0x7c, 0x79});
    set_color(12, {0xa9, 0x9c, 0x8d});
    set_color(13, {0x7d, 0x7b, 0x62});
    set_color(14, {0xaa, 0xa2, 0x5d});
    set_color(15, {0x84, 0x6d, 0x59});
    set_color(16, {0xa8, 0x8a, 0x5e});
}

🐰 MoonBit

///|
using @firefly {type Color, type RGB}

///|
pub fn boot() -> Unit {
  set_colors()
}

///|
fn set_colors() -> Unit {
  // https://lospec.com/palette-list/fading-16
  @firefly.set_color(Color::from_int(1), RGB::new(0xdd, 0xcf, 0x99));
  @firefly.set_color(Color::from_int(2), RGB::new(0xcc, 0xa8, 0x7b));
  @firefly.set_color(Color::from_int(3), RGB::new(0xb9, 0x7a, 0x60));
  @firefly.set_color(Color::from_int(4), RGB::new(0x9c, 0x52, 0x4e));
  @firefly.set_color(Color::from_int(5), RGB::new(0x77, 0x42, 0x51));
  @firefly.set_color(Color::from_int(6), RGB::new(0x4b, 0x3d, 0x44));
  @firefly.set_color(Color::from_int(7), RGB::new(0x4e, 0x54, 0x63));
  @firefly.set_color(Color::from_int(8), RGB::new(0x5b, 0x7d, 0x73));
  @firefly.set_color(Color::from_int(9), RGB::new(0x8e, 0x9f, 0x7d));
  @firefly.set_color(Color::from_int(10), RGB::new(0x64, 0x53, 0x55));
  @firefly.set_color(Color::from_int(11), RGB::new(0x8c, 0x7c, 0x79));
  @firefly.set_color(Color::from_int(12), RGB::new(0xa9, 0x9c, 0x8d));
  @firefly.set_color(Color::from_int(13), RGB::new(0x7d, 0x7b, 0x62));
  @firefly.set_color(Color::from_int(14), RGB::new(0xaa, 0xa2, 0x5d));
  @firefly.set_color(Color::from_int(15), RGB::new(0x84, 0x6d, 0x59));
  @firefly.set_color(Color::from_int(16), RGB::new(0xa8, 0x8a, 0x5e));
}

🌙 Lua

function boot()
  set_colors()
end

function set_colors()
  -- https://lospec.com/palette-list/fading-16
  firefly.set_color(1, {r=0xdd, g=0xcf, b=0x99});
  firefly.set_color(2, {r=0xcc, g=0xa8, b=0x7b});
  firefly.set_color(3, {r=0xb9, g=0x7a, b=0x60});
  firefly.set_color(4, {r=0x9c, g=0x52, b=0x4e});
  firefly.set_color(5, {r=0x77, g=0x42, b=0x51});
  firefly.set_color(6, {r=0x4b, g=0x3d, b=0x44});
  firefly.set_color(7, {r=0x4e, g=0x54, b=0x63});
  firefly.set_color(8, {r=0x5b, g=0x7d, b=0x73});
  firefly.set_color(9, {r=0x8e, g=0x9f, b=0x7d});
  firefly.set_color(10, {r=0x64, g=0x53, b=0x55});
  firefly.set_color(11, {r=0x8c, g=0x7c, b=0x79});
  firefly.set_color(12, {r=0xa9, g=0x9c, b=0x8d});
  firefly.set_color(13, {r=0x7d, g=0x7b, b=0x62});
  firefly.set_color(14, {r=0xaa, g=0xa2, b=0x5d});
  firefly.set_color(15, {r=0x84, g=0x6d, b=0x59});
  firefly.set_color(16, {r=0xa8, g=0x8a, b=0x5e});
end