File: igor_pro.rb

package info (click to toggle)
ruby-rouge 4.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 6,844 kB
  • sloc: ruby: 38,489; sed: 2,071; perl: 152; makefile: 8
file content (25 lines) | stat: -rw-r--r-- 1,047 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- coding: utf-8 -*- #
# frozen_string_literal: true

module Rouge
  module Themes
    class IgorPro < CSSTheme
      name 'igorpro'

      style Text,                             :fg => '#444444'
      style Comment::Preproc,                 :fg => '#CC00A3'
      style Comment::Special,                 :fg => '#CC00A3'
      style Comment,                          :fg => '#FF0000'
      style Generic::Emph,                    :italic => true
      style Generic::EmphStrong,              :italic => true, :bold => true
      style Generic::Strong,                  :bold => true
      style Keyword::Constant,                :fg => '#C34E00'
      style Keyword::Declaration,             :fg => '#0000FF'
      style Keyword::Reserved,                :fg => '#007575'
      style Keyword,                          :fg => '#0000FF'
      style Literal::String,                  :fg => '#009C00'
      style Literal::String::Affix,           :fg => '#0000FF'
      style Name::Builtin,                    :fg => '#C34E00'
    end
  end
end