This file is indexed.

/usr/share/kde4/apps/tagua/themes/squares/Default/theme_connect4.lua is in tagua-data 1.0~alpha2-15.

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
import("piece_theme.lua")
import("selection.lua")

theme.background = function(size)
  local upper = Image(size,size)
  local lower = Image(size,size)
  upper:fill_rect(Rect(0,0,size,size), "#8090a0")
  upper:draw_svg(Rect(0,0,size,size), "arrow_grey.svg")
  lower:fill_rect(Rect(0,0,size,size), "#2030d0")
  lower:draw_svg(Rect(0,0,size,size), "spiral.svg")
  return { [Rect(0,0,size*7,size)] = upper, [Rect(0,size,size*7,size*6)] = lower }
end

theme.highlighting = fromSVG("arrow_yellow.svg")
theme.validmove = fromColor("#bdaede")