Project1

标题: 如何将输入文章时的黄色字体改成暗金色? [打印本页]

作者: 凯蒂洛斯    时间: 2011-4-29 20:09
标题: 如何将输入文章时的黄色字体改成暗金色?
我用的是空轨式fuki, 虽然俺知道是要调RGB三个数的数值,但是要在哪里改啊……dsu_plus_rewardpost_czw
作者: Wind2010    时间: 2011-4-29 20:18
本帖最后由 Wind2010 于 2011-4-29 20:18 编辑

全局搜索

  1. def text_color(n)
复制代码

作者: 凯蒂洛斯    时间: 2011-4-29 20:30
本帖最后由 凯蒂洛斯 于 2011-4-29 20:55 编辑

回复 Wind2010 的帖子

谢谢了,正在使用画图的自定义颜色调试中……完成后我将贴出截图
  1.   def text_color(n)
  2.     case n
  3.     when 0
  4.       return Color.new(255, 255, 255, 255)
  5.     when 1
  6.       return Color.new(128, 128, 255, 255)#紫色未修改
  7.     when 2
  8.       return Color.new(255, 55, 55, 255)#红色return Color.new(255, 128, 128, 255)
  9.     when 3
  10.       return Color.new(0, 255, 64, 255)#绿色return Color.new(128, 255, 128, 255)
  11.     when 4
  12.       return Color.new(128, 255, 255, 255)#蓝色未修改
  13.     when 5
  14.       return Color.new(255, 196, 255, 255)#粉色return Color.new(255, 128, 255, 255)
  15.     when 6
  16.       return Color.new(255, 220, 0, 255)#黄色return Color.new(255, 255, 128, 255)
  17.     when 7
  18.       return Color.new(192, 192, 192, 255)#灰色未修改
  19.     else
  20.       normal_color
  21.     end
  22.   end
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1