Hex Colors RG
#1
Hex Colors RG

by Kyonides

Introduction

I'm back to leave you another scriptlet that will allow you to use hex colors in your windows and sprites with ease.

This code will work on RMXP, RMVX and even RMVX ACE! Shocked

Just use it like this:

For Windows:
Code:
self.contents.font.color = hex_color("FF00FF")

For Sprites:
Code:
self.bitmap.font.color = hex_color("FF00FF")

In this particular case, your text will become purple-ish! Virus 

You can also add 2 extra characters to set the alpha value of your custom color manually.

In both cases you can add the # pound sign at the beginning of the string, but it's not mandatory.

The Script

Code:
# * Hex Colors RG * #
#  Scripter : Kyonides
#  2025-11-18

module Hex
  def hex_color(hex)
    digits = hex.size
    hex.sub!("#", "")
    red = hex[0, 2].to_i(16)
    green = hex[2, 2].to_i(16)
    blue = hex[4, 2].to_i(16)
    alpha = digits == 8 ? hex[6, 2] : 255
    Color.new(red, green, blue, alpha)
  end
end

class Window_Base
  include Hex
end

class Sprite
  include Hex
end

Terms & Conditions

It's free as in Beer beer. That's all you need to know. Winking
"For God has not destined us for wrath, but for obtaining salvation through our Lord Jesus Christ," 1 Thessalonians 5:9

Maranatha!

The Internet might be either your friend or enemy. It just depends on whether or not she has a bad hair day.

[Image: SP1-Scripter.png]
[Image: SP1-Writer.png]
[Image: SP1-Poet.png]
[Image: SP1-PixelArtist.png]
[Image: SP1-Reporter.png]

My Original Stories (available in English and Spanish)

List of Compiled Binary Executables I have published...
HiddenChest & Roole

Give me a free copy of your completed game if you include at least 3 of my scripts! Laughing + Tongue sticking out

Just some scripts I've already published on the board...
KyoGemBoost XP VX & ACE, RandomEnkounters XP, KSkillShop XP, Kolloseum States XP, KEvents XP, KScenario XP & Gosu, KyoPrizeShop XP Mangostan, Kuests XP, KyoDiscounts XP VX, ACE & MV, KChest XP VX & ACE 2016, KTelePort XP, KSkillMax XP & VX & ACE, Gem Roulette XP VX & VX Ace, KRespawnPoint XP, VX & VX Ace, GiveAway XP VX & ACE, Klearance XP VX & ACE, KUnits XP VX, ACE & Gosu 2017, KLevel XP, KRumors XP & ACE, KMonsterPals XP VX & ACE, KStatsRefill XP VX & ACE, KLotto XP VX & ACE, KItemDesc XP & VX, KPocket XP & VX, OpenChest XP VX & ACE
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
   RM2K Facesets, Inn & Windowskin Colors DerVVulfman 1 13,236 02-05-2013, 10:19 AM
Last Post: hanetzer
   Item Limits and Rarity Colors Trickster 0 6,431 03-02-2008, 05:58 AM
Last Post: Trickster



Users browsing this thread: 1 Guest(s)