Sha256: 9a252357c3d25988820f3dd0d21c758206e4b42a36b2aa9fea7d7ce348e47f0a
Contents?: true
Size: 848 Bytes
Versions: 17
Compression:
Stored size: 848 Bytes
Contents
# -*- 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 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
Version data entries
17 entries across 17 versions & 2 rubygems