Palettes / antiquity16

antiquity16 by ILTA

A celebration for getting to 2k followers on my Twitter! 🎉 Nostalgic palette based on old vintage ads. Includes a variety of skintones!

🦀 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/antiquity16
    set_color(Color::from(1), RGB::new(0x20, 0x20, 0x20));
    set_color(Color::from(2), RGB::new(0x2d, 0x21, 0x1e));
    set_color(Color::from(3), RGB::new(0x45, 0x29, 0x23));
    set_color(Color::from(4), RGB::new(0x6d, 0x3d, 0x29));
    set_color(Color::from(5), RGB::new(0xb1, 0x6b, 0x4a));
    set_color(Color::from(6), RGB::new(0xe8, 0x9f, 0x6e));
    set_color(Color::from(7), RGB::new(0xe8, 0xbe, 0x82));
    set_color(Color::from(8), RGB::new(0x5d, 0x75, 0x57));
    set_color(Color::from(9), RGB::new(0x8e, 0x92, 0x57));
    set_color(Color::from(10), RGB::new(0x70, 0x7b, 0x88));
    set_color(Color::from(11), RGB::new(0x8a, 0xa7, 0xac));
    set_color(Color::from(12), RGB::new(0xe5, 0x5d, 0x4d));
    set_color(Color::from(13), RGB::new(0xf1, 0x86, 0x6c));
    set_color(Color::from(14), RGB::new(0xd2, 0x67, 0x30));
    set_color(Color::from(15), RGB::new(0xde, 0x9a, 0x28));
    set_color(Color::from(16), RGB::new(0xe8, 0xd8, 0xa5));
}

🏃 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/antiquity16
    firefly.SetColor(1, firefly.RGB{R: 0x20, G: 0x20, B: 0x20})
    firefly.SetColor(2, firefly.RGB{R: 0x2d, G: 0x21, B: 0x1e})
    firefly.SetColor(3, firefly.RGB{R: 0x45, G: 0x29, B: 0x23})
    firefly.SetColor(4, firefly.RGB{R: 0x6d, G: 0x3d, B: 0x29})
    firefly.SetColor(5, firefly.RGB{R: 0xb1, G: 0x6b, B: 0x4a})
    firefly.SetColor(6, firefly.RGB{R: 0xe8, G: 0x9f, B: 0x6e})
    firefly.SetColor(7, firefly.RGB{R: 0xe8, G: 0xbe, B: 0x82})
    firefly.SetColor(8, firefly.RGB{R: 0x5d, G: 0x75, B: 0x57})
    firefly.SetColor(9, firefly.RGB{R: 0x8e, G: 0x92, B: 0x57})
    firefly.SetColor(10, firefly.RGB{R: 0x70, G: 0x7b, B: 0x88})
    firefly.SetColor(11, firefly.RGB{R: 0x8a, G: 0xa7, B: 0xac})
    firefly.SetColor(12, firefly.RGB{R: 0xe5, G: 0x5d, B: 0x4d})
    firefly.SetColor(13, firefly.RGB{R: 0xf1, G: 0x86, B: 0x6c})
    firefly.SetColor(14, firefly.RGB{R: 0xd2, G: 0x67, B: 0x30})
    firefly.SetColor(15, firefly.RGB{R: 0xde, G: 0x9a, B: 0x28})
    firefly.SetColor(16, firefly.RGB{R: 0xe8, G: 0xd8, B: 0xa5})
}

⚡️ Zig

const ff = @import("firefly");

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

fn setColors() void {
    // https://lospec.com/palette-list/antiquity16
    ff.setColor(@enumFromInt(1), ff.RGB{.r = 0x20, .g = 0x20, .b = 0x20});
    ff.setColor(@enumFromInt(2), ff.RGB{.r = 0x2d, .g = 0x21, .b = 0x1e});
    ff.setColor(@enumFromInt(3), ff.RGB{.r = 0x45, .g = 0x29, .b = 0x23});
    ff.setColor(@enumFromInt(4), ff.RGB{.r = 0x6d, .g = 0x3d, .b = 0x29});
    ff.setColor(@enumFromInt(5), ff.RGB{.r = 0xb1, .g = 0x6b, .b = 0x4a});
    ff.setColor(@enumFromInt(6), ff.RGB{.r = 0xe8, .g = 0x9f, .b = 0x6e});
    ff.setColor(@enumFromInt(7), ff.RGB{.r = 0xe8, .g = 0xbe, .b = 0x82});
    ff.setColor(@enumFromInt(8), ff.RGB{.r = 0x5d, .g = 0x75, .b = 0x57});
    ff.setColor(@enumFromInt(9), ff.RGB{.r = 0x8e, .g = 0x92, .b = 0x57});
    ff.setColor(@enumFromInt(10), ff.RGB{.r = 0x70, .g = 0x7b, .b = 0x88});
    ff.setColor(@enumFromInt(11), ff.RGB{.r = 0x8a, .g = 0xa7, .b = 0xac});
    ff.setColor(@enumFromInt(12), ff.RGB{.r = 0xe5, .g = 0x5d, .b = 0x4d});
    ff.setColor(@enumFromInt(13), ff.RGB{.r = 0xf1, .g = 0x86, .b = 0x6c});
    ff.setColor(@enumFromInt(14), ff.RGB{.r = 0xd2, .g = 0x67, .b = 0x30});
    ff.setColor(@enumFromInt(15), ff.RGB{.r = 0xde, .g = 0x9a, .b = 0x28});
    ff.setColor(@enumFromInt(16), ff.RGB{.r = 0xe8, .g = 0xd8, .b = 0xa5});
}

🐀 C

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

BOOT void boot()
{
    set_colors();
}

void set_colors()
{
    // https://lospec.com/palette-list/antiquity16
    RGB color1 = {0x20, 0x20, 0x20};
    set_color(1, color1);
    RGB color2 = {0x2d, 0x21, 0x1e};
    set_color(2, color2);
    RGB color3 = {0x45, 0x29, 0x23};
    set_color(3, color3);
    RGB color4 = {0x6d, 0x3d, 0x29};
    set_color(4, color4);
    RGB color5 = {0xb1, 0x6b, 0x4a};
    set_color(5, color5);
    RGB color6 = {0xe8, 0x9f, 0x6e};
    set_color(6, color6);
    RGB color7 = {0xe8, 0xbe, 0x82};
    set_color(7, color7);
    RGB color8 = {0x5d, 0x75, 0x57};
    set_color(8, color8);
    RGB color9 = {0x8e, 0x92, 0x57};
    set_color(9, color9);
    RGB color10 = {0x70, 0x7b, 0x88};
    set_color(10, color10);
    RGB color11 = {0x8a, 0xa7, 0xac};
    set_color(11, color11);
    RGB color12 = {0xe5, 0x5d, 0x4d};
    set_color(12, color12);
    RGB color13 = {0xf1, 0x86, 0x6c};
    set_color(13, color13);
    RGB color14 = {0xd2, 0x67, 0x30};
    set_color(14, color14);
    RGB color15 = {0xde, 0x9a, 0x28};
    set_color(15, color15);
    RGB color16 = {0xe8, 0xd8, 0xa5};
    set_color(16, color16);
}

➕ C++

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

BOOT void boot()
{
    set_colors();
}

void set_colors()
{
    // https://lospec.com/palette-list/antiquity16
    set_color(1, {0x20, 0x20, 0x20});
    set_color(2, {0x2d, 0x21, 0x1e});
    set_color(3, {0x45, 0x29, 0x23});
    set_color(4, {0x6d, 0x3d, 0x29});
    set_color(5, {0xb1, 0x6b, 0x4a});
    set_color(6, {0xe8, 0x9f, 0x6e});
    set_color(7, {0xe8, 0xbe, 0x82});
    set_color(8, {0x5d, 0x75, 0x57});
    set_color(9, {0x8e, 0x92, 0x57});
    set_color(10, {0x70, 0x7b, 0x88});
    set_color(11, {0x8a, 0xa7, 0xac});
    set_color(12, {0xe5, 0x5d, 0x4d});
    set_color(13, {0xf1, 0x86, 0x6c});
    set_color(14, {0xd2, 0x67, 0x30});
    set_color(15, {0xde, 0x9a, 0x28});
    set_color(16, {0xe8, 0xd8, 0xa5});
}

🐰 MoonBit

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

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

///|
fn set_colors() -> Unit {
  // https://lospec.com/palette-list/antiquity16
  @firefly.set_color(Color::from_int(1), RGB::new(0x20, 0x20, 0x20));
  @firefly.set_color(Color::from_int(2), RGB::new(0x2d, 0x21, 0x1e));
  @firefly.set_color(Color::from_int(3), RGB::new(0x45, 0x29, 0x23));
  @firefly.set_color(Color::from_int(4), RGB::new(0x6d, 0x3d, 0x29));
  @firefly.set_color(Color::from_int(5), RGB::new(0xb1, 0x6b, 0x4a));
  @firefly.set_color(Color::from_int(6), RGB::new(0xe8, 0x9f, 0x6e));
  @firefly.set_color(Color::from_int(7), RGB::new(0xe8, 0xbe, 0x82));
  @firefly.set_color(Color::from_int(8), RGB::new(0x5d, 0x75, 0x57));
  @firefly.set_color(Color::from_int(9), RGB::new(0x8e, 0x92, 0x57));
  @firefly.set_color(Color::from_int(10), RGB::new(0x70, 0x7b, 0x88));
  @firefly.set_color(Color::from_int(11), RGB::new(0x8a, 0xa7, 0xac));
  @firefly.set_color(Color::from_int(12), RGB::new(0xe5, 0x5d, 0x4d));
  @firefly.set_color(Color::from_int(13), RGB::new(0xf1, 0x86, 0x6c));
  @firefly.set_color(Color::from_int(14), RGB::new(0xd2, 0x67, 0x30));
  @firefly.set_color(Color::from_int(15), RGB::new(0xde, 0x9a, 0x28));
  @firefly.set_color(Color::from_int(16), RGB::new(0xe8, 0xd8, 0xa5));
}

🌙 Lua

function boot()
  set_colors()
end

function set_colors()
  -- https://lospec.com/palette-list/antiquity16
  firefly.set_color(1, {r=0x20, g=0x20, b=0x20});
  firefly.set_color(2, {r=0x2d, g=0x21, b=0x1e});
  firefly.set_color(3, {r=0x45, g=0x29, b=0x23});
  firefly.set_color(4, {r=0x6d, g=0x3d, b=0x29});
  firefly.set_color(5, {r=0xb1, g=0x6b, b=0x4a});
  firefly.set_color(6, {r=0xe8, g=0x9f, b=0x6e});
  firefly.set_color(7, {r=0xe8, g=0xbe, b=0x82});
  firefly.set_color(8, {r=0x5d, g=0x75, b=0x57});
  firefly.set_color(9, {r=0x8e, g=0x92, b=0x57});
  firefly.set_color(10, {r=0x70, g=0x7b, b=0x88});
  firefly.set_color(11, {r=0x8a, g=0xa7, b=0xac});
  firefly.set_color(12, {r=0xe5, g=0x5d, b=0x4d});
  firefly.set_color(13, {r=0xf1, g=0x86, b=0x6c});
  firefly.set_color(14, {r=0xd2, g=0x67, b=0x30});
  firefly.set_color(15, {r=0xde, g=0x9a, b=0x28});
  firefly.set_color(16, {r=0xe8, g=0xd8, b=0xa5});
end