This file is indexed.

/usr/lib/ruby/vendor_ruby/rugments/themes/monokai.rb is in ruby-rugments 1.0.0~beta8-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
module Rugments
  module Themes
    class Monokai < CSSTheme
      name 'monokai'

      palette black: '#000000'
      palette bright_green: '#a6e22e'
      palette bright_pink: '#f92672'
      palette carmine: '#960050'
      palette dark: '#49483e'
      palette dark_grey: '#888888'
      palette dark_red: '#aa0000'
      palette dimgrey: '#75715e'
      palette emperor: '#555555'
      palette grey: '#999999'
      palette light_grey: '#aaaaaa'
      palette light_violet: '#ae81ff'
      palette soft_cyan: '#66d9ef'
      palette soft_yellow: '#e6db74'
      palette very_dark: '#1e0010'
      palette whitish: '#f8f8f2'
      palette orange: '#f6aa11'
      palette white: '#ffffff'

      style Comment,
            Comment::Multiline,
            Comment::Single,                  fg: :dimgrey, italic: true
      style Comment::Preproc,                 fg: :dimgrey, bold: true
      style Comment::Special,                 fg: :dimgrey, italic: true, bold: true
      style Error,                            fg: :carmine, bg: :very_dark
      style Generic::Deleted,
            Generic::Inserted,                fg: :black
      style Generic::Emph,                    fg: :black, italic: true
      style Generic::Error,
            Generic::Traceback,               fg: :dark_red
      style Generic::Heading,                 fg: :grey
      style Generic::Output,                  fg: :dark_grey
      style Generic::Prompt,                  fg: :emperor
      style Generic::Strong,                  bold: true
      style Generic::Subheading,              fg: :light_grey
      style Keyword,
            Keyword::Constant,
            Keyword::Declaration,
            Keyword::Pseudo,
            Keyword::Reserved,
            Keyword::Type,                    fg: :soft_cyan, bold: true
      style Keyword::Namespace,
            Operator::Word,
            Operator,                         fg: :bright_pink, bold: true
      style Literal::Number::Float,
            Literal::Number::Hex,
            Literal::Number::Integer::Long,
            Literal::Number::Integer,
            Literal::Number::Oct,
            Literal::Number,
            Literal::String::Escape,          fg: :light_violet
      style Literal::String::Backtick,
            Literal::String::Char,
            Literal::String::Doc,
            Literal::String::Double,
            Literal::String::Heredoc,
            Literal::String::Interpol,
            Literal::String::Other,
            Literal::String::Regex,
            Literal::String::Single,
            Literal::String::Symbol,
            Literal::String,                  fg: :soft_yellow
      style Name::Attribute,                  fg: :bright_green
      style Name::Class,
            Name::Decorator,
            Name::Exception,
            Name::Function,                   fg: :bright_green, bold: true
      style Name::Constant,                   fg: :soft_cyan
      style Name::Builtin::Pseudo,
            Name::Builtin,
            Name::Entity,
            Name::Namespace,
            Name::Variable::Class,
            Name::Variable::Global,
            Name::Variable::Instance,
            Name::Variable,
            Text::Whitespace,                 fg: :whitish
      style Name::Label,                      fg: :whitish, bold: true
      style Name::Tag,                        fg: :bright_pink
      style Text,                             fg: :whitish, bg: :dark
    end
  end
end