You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. ///////////////////// TEXT FILE DESCRIPTION /////////////////////
  2. // 640x480 text scheme file
  3. //
  4. // Resolutions:
  5. // 320
  6. // 400
  7. // 512
  8. // 640
  9. // 800
  10. // 1024
  11. // 1152
  12. // 1280
  13. // 1600
  14. //
  15. // SchemeName defines a new scheme
  16. SchemeName = "Basic Text"
  17. // FontName is the string name of the font the scheme uses
  18. FontName = "Arial"
  19. // FontSize defines the height of the font (the rest is derived from that)
  20. FontSize = 17
  21. // FontWeight thickens the font (700 is bold, 1400 very bold)
  22. FontWeight = 0
  23. // foreground colors (RGBA, A=0 being fully transparent, A=255 fully solid)
  24. FgColor = "255 170 0 255"
  25. FgColorArmed = "255 255 255 255"
  26. FgColorMousedown = "255 255 255 255"
  27. // background colors (note that these always default to "0 0 0 0")
  28. BgColor = "0 0 0 0"
  29. BgColorArmed = "0 0 0 0"
  30. BgColorMousedown = "0 0 0 0"
  31. ///////////////////// TFC FONTS /////////////////////
  32. // DEFAULT BUTTON TEXT
  33. SchemeName = "Primary Button Text"
  34. FontName = "Arial"
  35. FontSize = 16
  36. FgColor = "255 170 0 255"
  37. BgColor = "0 0 0 141"
  38. FgColorArmed = "255 255 255 255"
  39. BgColorArmed = "255 170 0 67"
  40. // COMMAND MENU TEXT
  41. SchemeName = "CommandMenu Text"
  42. FontName = "Arial"
  43. FontSize = 14
  44. // SCOREBOARD TEXT
  45. SchemeName = "Scoreboard Text"
  46. FontName = "Arial"
  47. FontSize = 12
  48. FontWeight = 0
  49. // SCOREBOARD TITLE TEXT (team names, team scores)
  50. SchemeName = "Scoreboard Title Text"
  51. FontName = "Arial"
  52. FontSize = 18
  53. FontWeight = 700
  54. // SCOREBOARD SMALL TEXT (headers, player #)
  55. SchemeName = "Scoreboard Small Text"
  56. FontName = "Arial"
  57. FontSize = 11
  58. FontWeight = 0
  59. // TITLE FONT in TFC selection menus
  60. SchemeName = "Title Font"
  61. FontName = "Arial"
  62. FontSize = 23
  63. FgColor = "255 170 0 255"
  64. // CLASSDESC, MAPDESC, MOTD text windows
  65. SchemeName = "Briefing Text"
  66. FontName = "Arial"
  67. FontSize = 14
  68. FontWeight = 0
  69. FgColor = "255 170 0 255"
  70. // Team info text (list of players, etc)
  71. // fgColor is automatically set to the teams color
  72. SchemeName = "Team Info Text"
  73. FontName = "Arial"
  74. FontSize = 14
  75. FontWeight = 0