Advertisement
nomy

Untitled

Aug 20th, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.81 KB | None | 0 0
  1. ///////////////////////////////////////////////////////////
  2. // Tracker scheme resource file
  3. //
  4. // sections:
  5. // Colors - all the colors used by the scheme
  6. // BaseSettings - contains settings for app to use to draw controls
  7. // Fonts - list of all the fonts used by app
  8. // Borders - description of all the borders
  9. //
  10. ///////////////////////////////////////////////////////////
  11. Scheme
  12. {
  13. //////////////////////// COLORS ///////////////////////////
  14. // color details
  15. // this is a list of all the colors used by the scheme
  16. Colors
  17. {
  18. // base colors
  19. "White" "255 255 255 255"
  20. "OffWhite" "221 221 221 255"
  21. "DullWhite" "211 211 211 255"
  22.  
  23. "TransparentBlack" "0 0 0 128"
  24. "Black" "0 0 0 255"
  25.  
  26. "Blank" "0 0 0 0"
  27.  
  28. // base colors
  29. "BaseText" "216 222 211 255" // used in text windows, lists
  30. "BrightBaseText" "255 255 255 255" // brightest text
  31. "SelectedText" "255 255 255 255" // selected text
  32. "DimBaseText" "160 170 149 255" // dim base text
  33. "LabelDimText" "160 170 149 255" // used for info text
  34. "ControlText" "216 222 211 255" // used in all text controls
  35. "BrightControlText" "196 181 80 255" // use for selected controls
  36. "DisabledText1" "117 128 111 255" // disabled text
  37. "DisabledText2" "40 46 34 255" // overlay color for disabled text (to give that inset look)
  38. "DimListText" "117 134 102 255" // offline friends, unsubscribed games, etc.
  39.  
  40. // background colors
  41. "ControlBG" "76 88 68 255" // background color of controls
  42. "ControlDarkBG" "90 106 80 255" // darker background color; used for background of scrollbars
  43. "WindowBG" "62 70 55 255" // background color of text edit panes (chat, text entries, etc.)
  44. "SelectionBG" "149 136 49 255" // background color of any selected text or menu item
  45. "SelectionBG2" "40 46 34 255" // selection background in window w/o focus
  46. "ListBG" "62 70 55 255" // background of server browser, buddy list, etc.
  47.  
  48. // titlebar colors
  49. "TitleText" "255 255 255 255"
  50. "TitleDimText" "136 145 128 255"
  51. "TitleBG" "76 88 68 0"
  52. "TitleDimBG" "76 88 68 0"
  53.  
  54. // slider tick colors
  55. "SliderTickColor" "127 140 127 255"
  56. "SliderTrackColor" "31 31 31 255"
  57.  
  58. // border colors
  59. "BorderBright" "136 145 128 255" // the lit side of a control
  60. "BorderDark" "40 46 34 255" // the dark/unlit side of a control
  61. "BorderSelection" "0 0 0 255" // the additional border color for displaying the default/selected button
  62.  
  63. "TestColor" "255 0 255 255"
  64. }
  65.  
  66. ///////////////////// BASE SETTINGS ////////////////////////
  67. //
  68. // default settings for all panels
  69. // controls use these to determine their settings
  70. BaseSettings
  71. {
  72. // vgui_controls color specifications
  73. Border.Bright "BorderBright" // the lit side of a control
  74. Border.Dark "BorderDark" // the dark/unlit side of a control
  75. Border.Selection "BorderSelection" // the additional border color for displaying the default/selected button
  76.  
  77. Button.TextColor "ControlText"
  78. Button.BgColor "ControlBG"
  79. // Button.ArmedTextColor "BrightBaseText"
  80. // Button.ArmedBgColor "SelectionBG"
  81. // Button.DepressedTextColor "DimBaseText"
  82. // Button.DepressedBgColor "ControlDarkBG"
  83. Button.FocusBorderColor "TransparentBlack"
  84.  
  85. CheckButton.TextColor "BaseText"
  86. CheckButton.SelectedTextColor "BrightControlText"
  87. CheckButton.BgColor "ListBG"
  88. CheckButton.Border1 "Border.Dark" // the left checkbutton border
  89. CheckButton.Border2 "Border.Bright" // the right checkbutton border
  90. CheckButton.Check "BrightControlText" // color of the check itself
  91.  
  92. ComboBoxButton.ArrowColor "DimBaseText"
  93. ComboBoxButton.ArmedArrowColor "BrightBaseText"
  94. ComboBoxButton.BgColor "ListBG"
  95. ComboBoxButton.DisabledBgColor "ControlBG"
  96.  
  97. Frame.TitleTextInsetX 30
  98. Frame.ClientInsetX 20
  99. Frame.ClientInsetY 6
  100. Frame.BgColor "ControlBG"
  101. Frame.OutOfFocusBgColor "ControlBG"
  102. Frame.FocusTransitionEffectTime "0.3" // time it takes for a window to fade in/out on focus/out of focus
  103. Frame.TransitionEffectTime "0.3" // time it takes for a window to fade in/out on open/close
  104. Frame.AutoSnapRange "0"
  105. FrameGrip.Color1 "BorderBright"
  106. FrameGrip.Color2 "BorderSelection"
  107. FrameTitleButton.FgColor "BorderBright"
  108. FrameTitleButton.BgColor "ControlBG"
  109. FrameTitleButton.DisabledFgColor "TitleDimText"
  110. FrameTitleButton.DisabledBgColor "TitleDimBG"
  111. FrameSystemButton.FgColor "TitleBG"
  112. FrameSystemButton.BgColor "TitleBG"
  113. FrameSystemButton.Icon "resource/icon_steam"
  114. FrameSystemButton.DisabledIcon "resource/icon_steam_disabled"
  115. FrameTitleBar.TextColor "TitleText"
  116. FrameTitleBar.BgColor "TitleBG"
  117. FrameTitleBar.DisabledTextColor "TitleText"
  118. FrameTitleBar.DisabledBgColor "TitleBG"
  119.  
  120. GraphPanel.FgColor "White"
  121. GraphPanel.BgColor "TransparentBlack"
  122.  
  123. Label.TextDullColor "DimBaseText"
  124. Label.TextColor "ControlText"
  125. Label.TextBrightColor "BrightBaseText"
  126. Label.SelectedTextColor "BrightControlText"
  127. Label.BgColor "ControlBG"
  128. Label.DisabledFgColor1 "DisabledText1"
  129. Label.DisabledFgColor2 "DisabledText2"
  130.  
  131. ListPanel.TextColor "BaseText"
  132. ListPanel.BgColor "ListBG"
  133. ListPanel.SelectedTextColor "BrightBaseText"
  134. ListPanel.SelectedBgColor "SelectionBG"
  135. ListPanel.SelectedOutOfFocusBgColor "SelectionBG2"
  136. ListPanel.EmptyListInfoTextColor "DimBaseText"
  137.  
  138. Menu.TextInset "6"
  139. Menu.FgColor "DimBaseText"
  140. Menu.BgColor "ControlBG"
  141. Menu.ArmedFgColor "BrightBaseText"
  142. Menu.ArmedBgColor "SelectionBG"
  143. Menu.DividerColor "BorderDark"
  144.  
  145. Panel.FgColor "BorderSelection"
  146. Panel.BgColor "ControlBG"
  147.  
  148. ProgressBar.FgColor "Label.FgColor"
  149. ProgressBar.BgColor "Label.BgColor"
  150.  
  151. PropertySheet.TextColor "ControlText"
  152. PropertySheet.SelectedTextColor "BrightControlText"
  153. PropertySheet.TransitionEffectTime "0" // time to change from one tab to another
  154.  
  155. RadioButton.TextColor "ToggleButton.TextColor"
  156. RadioButton.SelectedTextColor "ToggleButton.SelectedTextColor"
  157.  
  158. RichText.TextColor "TextEntry.TextColor"
  159. RichText.BgColor "TextEntry.BgColor"
  160. RichText.SelectedTextColor "TextEntry.SelectedTextColor"
  161. RichText.SelectedBgColor "SelectionBG"
  162.  
  163. ScrollBar.Wide 17
  164.  
  165. ScrollBarButton.FgColor "ControlText"
  166. ScrollBarButton.BgColor "ControlDarkBG"
  167. ScrollBarButton.ArmedFgColor "BrightBaseText"
  168. ScrollBarButton.ArmedBgColor "ControlDarkBG"
  169. ScrollBarButton.DepressedFgColor "BrightBaseText"
  170. ScrollBarButton.DepressedBgColor "ControlDarkBG"
  171.  
  172. ScrollBarSlider.BgColor "ControlDarkBG" // this isn't really used
  173. ScrollBarSlider.FgColor "ControlBG" // handle with which the slider is grabbed
  174.  
  175. // SectionedListPanel.HeaderTextColor "White"
  176. // SectionedListPanel.HeaderBgColor "Blank"
  177. // SectionedListPanel.DividerColor "Black"
  178. // SectionedListPanel.TextColor "DullWhite"
  179. // SectionedListPanel.BrightTextColor "White"
  180. // SectionedListPanel.BgColor "TransparentBlack"
  181. // SectionedListPanel.SelectedTextColor "Black"
  182. // SectionedListPanel.SelectedBgColor "255 155 0 255"
  183. // SectionedListPanel.OutOfFocusSelectedTextColor "Black"
  184. // SectionedListPanel.OutOfFocusSelectedBgColor "255 155 0 128"
  185.  
  186. Slider.NobColor "ControlDarkBG"
  187. Slider.TextColor "ControlBG"
  188. Slider.TrackColor "ControlDarkBG"
  189. // Slider.DisabledTextColor1 "117 117 117 255"
  190. // Slider.DisabledTextColor2 "30 30 30 255"
  191.  
  192. TextEntry.TextColor "ControlText"
  193. TextEntry.BgColor "ListBG"
  194. TextEntry.CursorColor "Label.CursoColor"
  195. TextEntry.DisabledTextColor "DimBaseText"
  196. TextEntry.DisabledBgColor "ControlBG"
  197. TextEntry.SelectedTextColor "SelectedText"
  198. TextEntry.SelectedBgColor "SelectionBG"
  199. TextEntry.OutOfFocusSelectedBgColor "SelectionBG2"
  200. TextEntry.FocusEdgeColor "SelectionBG"
  201.  
  202. ToggleButton.SelectedTextColor "Label.SelectedTextColor"
  203.  
  204. // Tooltip.TextColor "0 0 0 196"
  205. // Tooltip.BgColor "255 155 0 255"
  206.  
  207. TreeView.BgColor "WindowBG"
  208.  
  209. WizardSubPanel.BgColor "ControlBG"
  210. }
  211.  
  212. //
  213. //////////////////////// FONTS /////////////////////////////
  214. //
  215. // describes all the fonts
  216. Fonts
  217. {
  218. // fonts are used in order that they are listed
  219. // fonts listed later in the order will only be used if they fulfill a range not already filled
  220. // if a font fails to load then the subsequent fonts will replace
  221. // fonts are used in order that they are listed
  222. "DebugFixed"
  223. {
  224. "1"
  225. {
  226. "name" "Courier New"
  227. "tall" "10"
  228. "weight" "500"
  229. "antialias" "1"
  230. }
  231. }
  232. // fonts are used in order that they are listed
  233. "DebugFixedSmall"
  234. {
  235. "1"
  236. {
  237. "name" "Courier New"
  238. "tall" "7"
  239. "weight" "500"
  240. "antialias" "1"
  241. }
  242. }
  243. "DefaultFixedOutline"
  244. {
  245. "1"
  246. {
  247. "name" "Lucida Console"
  248. "tall" "10"
  249. "weight" "0"
  250. "outline" "1"
  251. }
  252. }
  253. "Default"
  254. {
  255. "1"
  256. {
  257. "name" "Tahoma"
  258. "tall" "16"
  259. "weight" "500"
  260. }
  261. }
  262. "DefaultBold"
  263. {
  264. "1"
  265. {
  266. "name" "Tahoma"
  267. "tall" "16"
  268. "weight" "1000"
  269. }
  270. }
  271. "DefaultUnderline"
  272. {
  273. "1"
  274. {
  275. "name" "Tahoma"
  276. "tall" "16"
  277. "weight" "500"
  278. "underline" "1"
  279. }
  280. }
  281. "DefaultSmall"
  282. {
  283. "1"
  284. {
  285. "name" "Tahoma"
  286. "tall" "13"
  287. "weight" "0"
  288. }
  289. }
  290. "DefaultSmallDropShadow"
  291. {
  292. "1"
  293. {
  294. "name" "Tahoma"
  295. "tall" "13"
  296. "weight" "0"
  297. "dropshadow" "1"
  298. }
  299. }
  300. "DefaultVerySmall"
  301. {
  302. "1"
  303. {
  304. "name" "Tahoma"
  305. "tall" "12"
  306. "weight" "0"
  307. }
  308. }
  309.  
  310. "DefaultLarge"
  311. {
  312. "1"
  313. {
  314. "name" "Tahoma"
  315. "tall" "18"
  316. "weight" "0"
  317. }
  318. }
  319. "UiBold"
  320. {
  321. "1"
  322. {
  323. "name" "Tahoma"
  324. "tall" "12"
  325. "weight" "1000"
  326. }
  327. }
  328. "MenuLarge"
  329. {
  330. "1"
  331. {
  332. "name" "Verdana"
  333. "tall" "16"
  334. "weight" "600"
  335. "antialias" "1"
  336. }
  337. }
  338.  
  339. "ConsoleText"
  340. {
  341. "1"
  342. {
  343. "name" "Lucida Console"
  344. "tall" "10"
  345. "weight" "500"
  346. }
  347. }
  348.  
  349. // this is the symbol font
  350. "Marlett"
  351. {
  352. "1"
  353. {
  354. "name" "Marlett"
  355. "tall" "14"
  356. "weight" "0"
  357. "symbol" "1"
  358. }
  359. }
  360.  
  361. "Trebuchet24"
  362. {
  363. "1"
  364. {
  365. "name" "Trebuchet MS"
  366. "tall" "24"
  367. "weight" "900"
  368. }
  369. }
  370.  
  371.  
  372. "Trebuchet20"
  373. {
  374. "1"
  375. {
  376. "name" "Trebuchet MS"
  377. "tall" "20"
  378. "weight" "900"
  379. }
  380. }
  381.  
  382. "Trebuchet18"
  383. {
  384. "1"
  385. {
  386. "name" "Trebuchet MS"
  387. "tall" "18"
  388. "weight" "900"
  389. }
  390. }
  391.  
  392. // HUD numbers
  393. // We use multiple fonts to 'pulse' them in the HUD, hence the need for many of near size
  394. "HUDNumber"
  395. {
  396. "1"
  397. {
  398. "name" "Trebuchet MS"
  399. "tall" "40"
  400. "weight" "900"
  401. }
  402. }
  403. "HUDNumber1"
  404. {
  405. "1"
  406. {
  407. "name" "Trebuchet MS"
  408. "tall" "41"
  409. "weight" "900"
  410. }
  411. }
  412. "HUDNumber2"
  413. {
  414. "1"
  415. {
  416. "name" "Trebuchet MS"
  417. "tall" "42"
  418. "weight" "900"
  419. }
  420. }
  421. "HUDNumber3"
  422. {
  423. "1"
  424. {
  425. "name" "Trebuchet MS"
  426. "tall" "43"
  427. "weight" "900"
  428. }
  429. }
  430. "HUDNumber4"
  431. {
  432. "1"
  433. {
  434. "name" "Trebuchet MS"
  435. "tall" "44"
  436. "weight" "900"
  437. }
  438. }
  439. "HUDNumber5"
  440. {
  441. "1"
  442. {
  443. "name" "Trebuchet MS"
  444. "tall" "45"
  445. "weight" "900"
  446. }
  447. }
  448. "DefaultFixed"
  449. {
  450. "1"
  451. {
  452. "name" "Lucida Console"
  453. "tall" "10"
  454. "weight" "0"
  455. }
  456. // "1"
  457. // {
  458. // "name" "FixedSys"
  459. // "tall" "20"
  460. // "weight" "0"
  461. // }
  462. }
  463.  
  464. "DefaultFixedDropShadow"
  465. {
  466. "1"
  467. {
  468. "name" "Lucida Console"
  469. "tall" "10"
  470. "weight" "0"
  471. "dropshadow" "1"
  472. }
  473. // "1"
  474. // {
  475. // "name" "FixedSys"
  476. // "tall" "20"
  477. // "weight" "0"
  478. // }
  479. }
  480.  
  481. "CloseCaption_Normal"
  482. {
  483. "1"
  484. {
  485. "name" "Tahoma"
  486. "tall" "16"
  487. "weight" "500"
  488. }
  489. }
  490. "CloseCaption_Italic"
  491. {
  492. "1"
  493. {
  494. "name" "Tahoma"
  495. "tall" "16"
  496. "weight" "500"
  497. "italic" "1"
  498. }
  499. }
  500. "CloseCaption_Bold"
  501. {
  502. "1"
  503. {
  504. "name" "Tahoma"
  505. "tall" "16"
  506. "weight" "900"
  507. }
  508. }
  509. "CloseCaption_BoldItalic"
  510. {
  511. "1"
  512. {
  513. "name" "Tahoma"
  514. "tall" "16"
  515. "weight" "900"
  516. "italic" "1"
  517. }
  518. }
  519.  
  520. TitleFont
  521. {
  522. "1"
  523. {
  524. "name" "HalfLife2"
  525. "tall" "72"
  526. "weight" "400"
  527. "antialias" "1"
  528. "custom" "1"
  529. }
  530. }
  531.  
  532. TitleFont2
  533. {
  534. "1"
  535. {
  536. "name" "HalfLife2"
  537. "tall" "120"
  538. "weight" "400"
  539. "antialias" "1"
  540. "custom" "1"
  541. }
  542. }
  543. }
  544.  
  545. //
  546. //////////////////// BORDERS //////////////////////////////
  547. //
  548. // describes all the border types
  549. Borders
  550. {
  551. BaseBorder InsetBorder
  552. ButtonBorder RaisedBorder
  553. ComboBoxBorder InsetBorder
  554. MenuBorder RaisedBorder
  555. BrowserBorder InsetBorder
  556. PropertySheetBorder RaisedBorder
  557. TabBorder RaisedBorder
  558. CheckBorder InsetBorder
  559. FrameBorder RaisedBorder
  560.  
  561. TitleButtonBorder RaisedBorder
  562. TitleButtonDepressedBorder InsetBorder
  563. TitleButtonDisabledBorder
  564. {
  565. "backgroundtype" "0"
  566. }
  567.  
  568.  
  569. ScrollBarButtonBorder
  570. {
  571. "inset" "1 0 0 0"
  572. Left
  573. {
  574. "1"
  575. {
  576. "color" "BorderBright"
  577. "offset" "0 1"
  578. }
  579. }
  580.  
  581. Right
  582. {
  583. "1"
  584. {
  585. "color" "BorderDark"
  586. "offset" "1 0"
  587. }
  588. }
  589.  
  590. Top
  591. {
  592. "1"
  593. {
  594. "color" "BorderBright"
  595. "offset" "0 0"
  596. }
  597. }
  598.  
  599. Bottom
  600. {
  601. "1"
  602. {
  603. "color" "BorderDark"
  604. "offset" "0 0"
  605. }
  606. }
  607. }
  608.  
  609. InsetBorder
  610. {
  611. "inset" "0 0 1 1"
  612. Right
  613. {
  614. "1"
  615. {
  616. "color" "Border.Bright"
  617. "offset" "0 1"
  618. }
  619. }
  620.  
  621. Left
  622. {
  623. "1"
  624. {
  625. "color" "Border.Dark"
  626. "offset" "1 0"
  627. }
  628. }
  629.  
  630. Bottom
  631. {
  632. "1"
  633. {
  634. "color" "Border.Bright"
  635. "offset" "0 0"
  636. }
  637. }
  638.  
  639. Top
  640. {
  641. "1"
  642. {
  643. "color" "Border.Dark"
  644. "offset" "0 0"
  645. }
  646. }
  647. }
  648.  
  649. DepressedBorder
  650. {
  651. "inset" "0 0 1 1"
  652. Left
  653. {
  654. "1"
  655. {
  656. "color" "Border.Bright"
  657. "offset" "0 1"
  658. }
  659. }
  660.  
  661. Right
  662. {
  663. "1"
  664. {
  665. "color" "Border.Dark"
  666. "offset" "1 0"
  667. }
  668. }
  669.  
  670. Top
  671. {
  672. "1"
  673. {
  674. "color" "Border.Bright"
  675. "offset" "0 0"
  676. }
  677. }
  678.  
  679. Bottom
  680. {
  681. "1"
  682. {
  683. "color" "Border.Dark"
  684. "offset" "0 0"
  685. }
  686. }
  687. }
  688. RaisedBorder
  689. {
  690. "inset" "0 0 1 1"
  691. Right
  692. {
  693. "1"
  694. {
  695. "color" "Border.Dark"
  696. "offset" "0 1"
  697. }
  698. }
  699.  
  700. Left
  701. {
  702. "1"
  703. {
  704. "color" "Border.Bright"
  705. "offset" "0 0"
  706. }
  707. }
  708.  
  709. Top
  710. {
  711. "1"
  712. {
  713. "color" "Border.Bright"
  714. "offset" "0 1"
  715. }
  716. }
  717.  
  718. Bottom
  719. {
  720. "1"
  721. {
  722. "color" "Border.Dark"
  723. "offset" "0 0"
  724. }
  725. }
  726. }
  727.  
  728. ScrollBarButtonBorder
  729. {
  730. "inset" "2 2 0 0"
  731. Left
  732. {
  733. "1"
  734. {
  735. "color" "Border.Dark"
  736. "offset" "0 1"
  737. }
  738. }
  739.  
  740. Right
  741. {
  742. "1"
  743. {
  744. "color" "Border.Bright"
  745. "offset" "1 0"
  746. }
  747. }
  748.  
  749. Top
  750. {
  751. "1"
  752. {
  753. "color" "Border.Dark"
  754. "offset" "0 0"
  755. }
  756. }
  757.  
  758. Bottom
  759. {
  760. "1"
  761. {
  762. "color" "Border.Bright"
  763. "offset" "0 0"
  764. }
  765. }
  766. }
  767.  
  768. ScrollBarButtonDepressedBorder
  769. {
  770. "inset" "2 2 0 0"
  771. Left
  772. {
  773. "1"
  774. {
  775. "color" "Border.Dark"
  776. "offset" "0 1"
  777. }
  778. }
  779.  
  780. Right
  781. {
  782. "1"
  783. {
  784. "color" "Border.Bright"
  785. "offset" "1 0"
  786. }
  787. }
  788.  
  789. Top
  790. {
  791. "1"
  792. {
  793. "color" "Border.Dark"
  794. "offset" "0 0"
  795. }
  796. }
  797.  
  798. Bottom
  799. {
  800. "1"
  801. {
  802. "color" "Border.Bright"
  803. "offset" "0 0"
  804. }
  805. }
  806. }
  807.  
  808. TabActiveBorder
  809. {
  810. "inset" "0 0 1 0"
  811. Left
  812. {
  813. "1"
  814. {
  815. "color" "Border.Bright"
  816. "offset" "0 0"
  817. }
  818. }
  819.  
  820. Right
  821. {
  822. "1"
  823. {
  824. "color" "Border.Dark"
  825. "offset" "1 0"
  826. }
  827. }
  828.  
  829. Top
  830. {
  831. "1"
  832. {
  833. "color" "Border.Bright"
  834. "offset" "0 0"
  835. }
  836. }
  837.  
  838. }
  839.  
  840.  
  841. ToolTipBorder
  842. {
  843. "inset" "0 0 1 0"
  844. Left
  845. {
  846. "1"
  847. {
  848. "color" "Border.Bright"
  849. "offset" "0 0"
  850. }
  851. }
  852.  
  853. Right
  854. {
  855. "1"
  856. {
  857. "color" "Border.Bright"
  858. "offset" "1 0"
  859. }
  860. }
  861.  
  862. Top
  863. {
  864. "1"
  865. {
  866. "color" "Border.Bright"
  867. "offset" "0 0"
  868. }
  869. }
  870.  
  871. Bottom
  872. {
  873. "1"
  874. {
  875. "color" "Border.Bright"
  876. "offset" "0 0"
  877. }
  878. }
  879. }
  880.  
  881. // this is the border used for default buttons (the button that gets pressed when you hit enter)
  882. ButtonKeyFocusBorder
  883. {
  884. "inset" "0 0 1 1"
  885. Right
  886. {
  887. "1"
  888. {
  889. "color" "Border.Selection"
  890. "offset" "0 0"
  891. }
  892. "2"
  893. {
  894. "color" "Border.Dark"
  895. "offset" "1 1"
  896. }
  897. }
  898. Bottom
  899. {
  900. "1"
  901. {
  902. "color" "Border.Selection"
  903. "offset" "0 0"
  904. }
  905. "2"
  906. {
  907. "color" "Border.Dark"
  908. "offset" "1 1"
  909. }
  910. }
  911. Left
  912. {
  913. "1"
  914. {
  915. "color" "Border.Selection"
  916. "offset" "0 0"
  917. }
  918. "2"
  919. {
  920. "color" "Border.Bright"
  921. "offset" "1 0"
  922. }
  923. }
  924. Top
  925. {
  926. "1"
  927. {
  928. "color" "Border.Selection"
  929. "offset" "0 0"
  930. }
  931. "2"
  932. {
  933. "color" "Border.Bright"
  934. "offset" "1 0"
  935. }
  936. }
  937. }
  938.  
  939. ButtonDepressedBorder
  940. {
  941. "inset" "2 1 1 1"
  942. Right
  943. {
  944. "1"
  945. {
  946. "color" "Border.Bright"
  947. "offset" "1 1"
  948. }
  949. }
  950.  
  951. Left
  952. {
  953. "1"
  954. {
  955. "color" "Border.Dark"
  956. "offset" "1 0"
  957. }
  958. }
  959.  
  960. Bottom
  961. {
  962. "1"
  963. {
  964. "color" "Border.Bright"
  965. "offset" "0 0"
  966. }
  967. }
  968.  
  969. Top
  970. {
  971. "1"
  972. {
  973. "color" "Border.Dark"
  974. "offset" "0 0"
  975. }
  976. }
  977. }
  978. }
  979.  
  980. //////////////////////// CUSTOM FONT FILES /////////////////////////////
  981. //
  982. // specifies all the custom (non-system) font files that need to be loaded to service the above described fonts
  983. CustomFontFiles
  984. {
  985. "1" "resource/HALFLIFE2.ttf"
  986.  
  987. }
  988. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement