定数:色


Game Maker Language リファレンス > 定数一覧 > 色

様々な場面の色の指定で使用できる。

定数名色見本
c_aqua水色16776960
c_black0
c_blue16711680
c_dkgrayダークグレー4210752
c_fuchsia赤紫色16711935
c_gray灰色8421504
c_green緑色32768
c_limeライム65280
c_ltgrayライトグレー12632256
c_maroon栗色128
c_navy濃紺8388608
c_oliveオリーブ32896
c_orangeオレンジ色4235519
c_purple紫色8388736
c_red赤色255
c_silver銀色12632256
c_tealティールグリーン8421376
c_white16777215
c_yellow黄色65535

独自定義の例

/// @description define color type.
// basic.
#macro c_crimson      make_color_rgb(0xdc, 0x14, 0x3c)
#macro c_salmon       make_color_rgb(0xfa, 0x80, 0x72)
#macro c_coral        make_color_rgb(0xff, 0x4f, 0x50)
#macro c_golden       make_color_rgb(0xff, 0xd7, 0x00)
#macro c_goldenrod    make_color_rgb(0xda, 0xa5, 0x20)
#macro c_ivory        make_color_rgb(0xff, 0xff, 0xf0)
#macro c_beige        make_color_rgb(0xff, 0xf5, 0xdc)
#macro c_wheat        make_color_rgb(0xf5, 0xde, 0xb3)
#macro c_tan          make_color_rgb(0xd2, 0xb4, 0x8c)
#macro c_khaki        make_color_rgb(0xc3, 0xb0, 0x91)
#macro c_chartreuse   make_color_rgb(0x7f, 0xff, 0x00)
#macro c_lime2        make_color_rgb(0xbf, 0xff, 0x00)
#macro c_teal2        make_color_rgb(0x00, 0x80, 0x80)
#macro c_forest_green make_color_rgb(0x22, 0x8b, 0x22)
#macro c_aquamarine   make_color_rgb(0x7f, 0xff, 0xd4)
#macro c_azure        make_color_rgb(0x00, 0x7f, 0xff)
#macro c_navy_blue    make_color_rgb(0x00, 0x00, 0x80)
#macro c_royal_blue   make_color_rgb(0x08, 0x4c, 0x9e)
#macro c_medium_blue  make_color_rgb(0x00, 0x00, 0xcd)
#macro c_purple2      make_color_rgb(0x80, 0x00, 0x80)
#macro c_plum         make_color_rgb(0x84, 0x31, 0x79)
#macro c_indigo       make_color_rgb(0x4b, 0x00, 0x82)
#macro c_puce         make_color_rgb(0xcc, 0x88, 0x99)
#macro c_mauve        make_color_rgb(0xe0, 0xb0, 0xff)
#macro c_lavender     make_color_rgb(0xb5, 0x7e, 0xdc)
#macro c_magenta      make_color_rgb(0xff, 0x00, 0xff)
#macro c_hot_pink     make_color_rgb(0xfc, 0x0f, 0xc0)
#macro c_fuchsia2     make_color_rgb(0xff, 0x77, 0xff)
#macro c_pink         make_color_rgb(0xff, 0xc0, 0xcb)
#macro c_brown        make_color_rgb(0x96, 0x4b, 0x00)
#macro c_charcoal     make_color_rgb(0x46, 0x46, 0x46)

// aseprite color.
#macro c_ase_lampblack  make_color_rgb(0x22, 0x20, 0x34) // 濃い黒
#macro c_ase_taupe      make_color_rgb(0x45, 0x28, 0x3C) // 黒
#macro c_ase_brown      make_color_rgb(0x66, 0x39, 0x31) // 茶色
#macro c_ase_maroon     make_color_rgb(0x8F, 0x56, 0x3B) // 赤茶色
#macro c_ase_orange     make_color_rgb(0xDF, 0x71, 0x26) // オレンジ
#macro c_ase_salmon     make_color_rgb(0xD9, 0xA0, 0x66) // オレンジピンク
#macro c_ase_pink       make_color_rgb(0xEE, 0xC3, 0x9A) // 肌色
#macro c_ase_yellow     make_color_rgb(0xFB, 0xF2, 0x36) // 黄色
#macro c_ase_lime       make_color_rgb(0x99, 0xE5, 0x50) // 黄緑
#macro c_ase_limegreen  make_color_rgb(0x6A, 0xBE, 0x30) // 濃い黄緑
#macro c_ase_green      make_color_rgb(0x37, 0x94, 0x6E) // 緑
#macro c_ase_darkgreen  make_color_rgb(0x4B, 0x69, 0x2F) // 暗い緑
#macro c_ase_drakbrown  make_color_rgb(0x52, 0x4B, 0x24) // 暗い茶色
#macro c_ase_darknavy   make_color_rgb(0x32, 0x3C, 0x39) // 暗い紺色
#macro c_ase_navy       make_color_rgb(0x3F, 0x3F, 0x74) // 濃い紺色
#macro c_ase_teal       make_color_rgb(0x30, 0x60, 0x82) // 青緑
#macro c_ase_blue       make_color_rgb(0x5B, 0x6E, 0xE1) // 青
#macro c_ase_skyblue    make_color_rgb(0x63, 0x9B, 0xFF) // 薄い青色
#macro c_ase_cyan       make_color_rgb(0x5F, 0xCD, 0xE4) // 水色
#macro c_ase_lightcyan  make_color_rgb(0xCB, 0xDB, 0xFC) // 薄い水色
#macro c_ase_frenchgray make_color_rgb(0x9B, 0xAD, 0xB7) // 青みがかった灰色
#macro c_ase_darkgray   make_color_rgb(0x84, 0x7E, 0x87) // 明るい灰色
#macro c_ase_gray       make_color_rgb(0x69, 0x6A, 0x6A) // 灰色
#macro c_ase_charcoal   make_color_rgb(0x59, 0x56, 0x52) // 石炭色
#macro c_ase_purple     make_color_rgb(0x76, 0x42, 0x8A) // 紫
#macro c_ase_crimson    make_color_rgb(0xAC, 0x32, 0x32) // 濃い赤
#macro c_ase_red        make_color_rgb(0xD9, 0x57, 0x63) // 赤
#macro c_ase_magenta    make_color_rgb(0xD7, 0x7B, 0xBA) // 明るい赤紫色
#macro c_ase_darkkhaki  make_color_rgb(0x8F, 0x97, 0x4A) // 暗い黄土色
#macro c_ase_olive      make_color_rgb(0x8A, 0x8F, 0x30) // 暗い黄色

標準色と独自定義のサンプル

c_redc_crimsonc_salmonc_coral
c_yellowc_orangec_goldenc_goldenrodc_ivoryc_beige
c_wheatc_tanc_khakic_olive
c_chartreusec_limec_lime2
c_greenc_tealc_teal2c_forest_green
c_aquac_aquamarinec_azurec_navyc_navy_bluec_royal_blue
c_medium_bluec_blue
c_purplec_purple2c_plumc_indigoc_pucec_mauve
c_lavenderc_magentac_hot_pinkc_fuchsiac_fuchsia2c_pink
c_brownc_maroon
c_whitec_ltgrayc_silverc_dkgrayc_grayc_charcoal
c_black

Asepriteカラー

c_ase_lampblackc_ase_taupec_ase_brownc_ase_maroonc_ase_orangec_ase_salmon
c_ase_pinkc_ase_yellowc_ase_limec_ase_limegreenc_ase_greenc_ase_darkgreen
c_ase_drakbrownc_ase_darknavyc_ase_navyc_ase_tealc_ase_bluec_ase_skyblue
c_ase_cyanc_ase_lightcyanc_ase_frenchgrayc_ase_darkgrayc_ase_grayc_ase_charcoal
c_ase_purplec_ase_crimsonc_ase_redc_ase_magentac_ase_darkkhakic_ase_olive

Wiki内検索

#search(): You already view a search box

MENU

ドキュメント

GMLリファレンス

2ch

その他



最新の30件

2024-03-07 2023-08-09 2023-05-21 2023-05-20 2023-05-04 2022-10-13 2022-07-21 2022-07-02 2022-04-06 2021-11-30 2021-11-26 2021-10-03 2021-09-23 2021-08-15 2021-06-02 2021-01-23 2021-01-21 2021-01-19 2021-01-18 2021-01-16 2021-01-15

人気の10件

今日の10件



これまでの訪問者: 6622
今日の訪問者: 2
昨日の訪問者: 1
閲覧者: 6