Advertisement
Archeia

Remove Italics

Nov 18th, 2017
2,817
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # ===================================================================
  2. #
  3. #   Script: Style_Default
  4. #
  5. #   $$COPYRIGHT$$
  6. #
  7. #   This script defines all style-descriptors for the default-style. To create
  8. #   a new style, just add a new script after "Style_Default" script and override
  9. #   the style-descriptors you like to change.
  10. #
  11. # ===================================================================
  12.  
  13. ###
  14. # Category name which is displayed on the left side in some settings menus like the audio
  15. # settings.
  16. ###
  17. ui.UIManager.styles.windowCategoryUIText = {
  18.     "font": {
  19.         "name": "Times New Roman",
  20.         "size": gs.UIConstants.TEXT_SIZE_SMALL,
  21.         "smallCaps": true,
  22.         "italic": false,
  23.         "color": [215, 215, 215, 255]
  24.     }
  25. }
  26.  
  27. ###
  28. # Title Screen text used for the title screen options like "New Game", etc.
  29. ###
  30. ui.UIManager.styles.titleText = {
  31.     "font": {
  32.         "name": "Times New Roman",
  33.         "size": 45,
  34.         "smallCaps": true,
  35.         "italic": false,
  36.         "color": [255, 255, 255, 255],
  37.         "outline": { "color": [0, 0, 0, 255], "size": 4 }
  38.     },
  39.     "anchor": [0.5, 0.5],
  40.     "animations": [
  41.         {
  42.             "event": "onMouseEnter",
  43.             "flow": [
  44.                 { "type": "zoomTo", "zoom": [110, 110], "duration": 10, "easing": "linear_inout", "wait": true }
  45.             ]
  46.         },
  47.         {
  48.             "event": "onMouseLeave",
  49.             "clear": false,
  50.             "flow": [
  51.                 { "type": "zoomTo", "zoom": [100, 100], "duration": 10, "easing": "linear_inout" }
  52.             ]
  53.         }
  54.     ]
  55. }
  56.  
  57. ui.UIManager.styles["titleText:hover"] = {
  58.     "font": {
  59.         "name": "Times New Roman",
  60.         "size": 45,
  61.         "smallCaps": true,
  62.         "italic": false,
  63.         "color": [205, 205, 255, 255],
  64.         "outline": { "color": [0, 0, 0, 255], "size": 4 }
  65.     }
  66. }
  67. ui.UIManager.styles["titleText:focused"] = {
  68.     "font": {
  69.         "name": "Times New Roman",
  70.         "size": 45,
  71.         "smallCaps": true,
  72.         "italic": false,
  73.         "color": [205, 205, 255, 255],
  74.         "outline": { "color": [0, 0, 0, 255], "size": 4 }
  75.     }
  76. }
  77.  
  78. ui.UIManager.styles.choiceBoxEntry = {
  79.     "opacity": 180
  80. }
  81.  
  82. ui.UIManager.styles["choiceBoxEntry:enabled"] = {
  83.     "opacity": 255
  84. }
  85.  
  86. ui.UIManager.styles.messageOptionButton = {
  87.     "image": gs.UIConstants.OPTION_BUTTON_MSG_IMAGE_OFF,
  88.     "opacity": 100
  89. }
  90.  
  91. ui.UIManager.styles["messageOptionButton:selected"] = {
  92.     "image": gs.UIConstants.OPTION_BUTTON_MSG_IMAGE_ON,
  93.     "opacity": 255
  94. }
  95.  
  96. ui.UIManager.styles["messageOptionButton:enabled"] = {
  97.     "opacity": 255
  98. }
  99.  
  100. ui.UIManager.styles.optionButton = {
  101.     "image": gs.UIConstants.OPTION_BUTTON_L_IMAGE_OFF
  102. }
  103.  
  104. ui.UIManager.styles["optionButton:selected"] = {
  105.     "image": gs.UIConstants.OPTION_BUTTON_L_IMAGE_ON
  106. }
  107.  
  108. ui.UIManager.styles.sliderTrack = {
  109.     "color": [131, 131, 131, 131]
  110. }
  111.  
  112. ui.UIManager.styles.sliderKnob = {
  113.     "image": gs.UIConstants.OPTION_BUTTON_L_IMAGE_OFF
  114. }
  115.  
  116. ui.UIManager.styles["sliderKnob:hover"] = {
  117.     "image": gs.UIConstants.OPTION_BUTTON_L_IMAGE_ON
  118. }
  119.  
  120. ui.UIManager.styles.galleryImageFrame = {
  121.     "image": "dropshadow"
  122. }
  123.  
  124. ui.UIManager.styles["galleryImageFrame:hover"] = {
  125.     "image": "selection"
  126. }
  127.  
  128. ui.UIManager.styles["galleryImageFrame:selected"] = {
  129.     "image": "selection"
  130. }
  131.  
  132. ui.UIManager.styles.windowFrame = {
  133.     "image": "skin-frame"
  134. }
  135.  
  136. ui.UIManager.styles.windowTilePattern = {
  137.     "image": "skin-tile",
  138.     "looping": { "vertical": true, "horizontal": true }
  139. }
  140.  
  141. ui.UIManager.styles.windowStretchPattern = {
  142.     "image": "skin-stretch"
  143. }
  144.  
  145. ui.UIManager.styles.windowShadow = {
  146.     "image": "dropshadow",
  147.     "frameCornerSize": 30,
  148.     "frameThickness": 30,
  149.     "padding": [-16, -16, -16, -16],
  150. }
  151.  
  152. ui.UIManager.styles.selectableWindowShadow = {
  153.     "image": "dropshadow"
  154. }
  155.  
  156.  
  157. ui.UIManager.styles["selectableWindowShadow:hover"] = {
  158.     "image": "selection"
  159. }
  160.  
  161. ui.UIManager.styles.buttonText = {
  162.     "alignmentX": "center",
  163.     "alignmentY": "center",
  164.     "font": {
  165.         "name": "Times New Roman",
  166.         "size": 30,
  167.         "smallCaps": true,
  168.         "italic": false,
  169.         "color": [255, 255, 255, 255]
  170.     }
  171. }
  172.  
  173. ui.UIManager.styles.cgGalleryImage = {
  174. }
  175.  
  176. ui.UIManager.styles["cgGalleryImageFrame"] = {
  177.     "image": "dropshadow"
  178. }
  179.  
  180. ui.UIManager.styles["selectableText"] = {
  181.     "font": {
  182.         "name": "Times New Roman",
  183.         "size": 30,
  184.         "smallCaps": true,
  185.         "italic": false,
  186.         "color": [255, 255, 255, 255]
  187.     }
  188. }
  189.  
  190. ui.UIManager.styles["selectableText:selected"] = {
  191.     "font": {
  192.         "name": "Times New Roman",
  193.         "size": 30,
  194.         "smallCaps": true,
  195.         "italic": false,
  196.         "color": [205, 205, 255, 255]
  197.     }
  198. }
  199.  
  200. #ui.UIManager.styles["button:hover windowShadow"] =
  201. #{
  202. #    "image": "selection"
  203. #}
  204.  
  205. ui.UIManager.styles["button"] =
  206. {
  207. }
  208.  
  209. ui.UIManager.styles["button:focused selectableWindowShadow"] =
  210. {
  211.     "image": "selection"
  212. }
  213.  
  214.  
  215.  
  216. ui.UIManager.styles["cgGalleryImage:hover cgGalleryImageFrame"] = {
  217.     "image": "selection"
  218. }
  219.  
  220. #ui.UIManager.styles["cgGalleryImage cgGalleryImageFrame"] = {
  221. #    "image": "dropshadow"
  222. #}
  223.  
  224. #ui.UIManager.styles["cgGalleryImageFrame:hover"] = {
  225. #    "image": "selection"
  226. #}
  227.  
  228. #ui.UIManager.styles["cgGalleryImageFrame:selected"] = {
  229. #    "image": "selection"
  230. #}
  231.  
  232. ###
  233. # Choice Timer text displayed if "Choice Timer" command is used to show a count-down
  234. # until the choice-selection is done automatically.
  235. ###
  236. ui.UIManager.styles.choiceTimerText = {
  237.     "font": {
  238.         "name": "Times New Roman",
  239.         "size": 30,
  240.         "smallCaps": true,
  241.         "italic": false,
  242.         "color": [255, 255, 255, 255],
  243.         "border": true
  244.     }
  245. }
  246.  
  247. ###
  248. # Regular Size UI text used in all places for normal-size text / labels.
  249. ###
  250. ui.UIManager.styles.regularUIText = {
  251.     "font": {
  252.         "name": "Times New Roman",
  253.         "size": 30,
  254.         "smallCaps": true,
  255.         "italic": false,
  256.         "color": [255, 255, 255, 255]
  257.     },
  258.     "opacity": 100
  259. }
  260.  
  261. ui.UIManager.styles["regularUIText:enabled"] = {
  262.     "font": {
  263.         "name": "Times New Roman",
  264.         "size": 30,
  265.         "smallCaps": true,
  266.         "italic": false,
  267.         "color": [255, 255, 255, 255]
  268.     },
  269.     "opacity": 255
  270. }
  271.  
  272.  
  273. ###
  274. # Small Size UI text used in all places for small-size text / labels.
  275. ###
  276. ui.UIManager.styles.smallUIText = {
  277.     "font": {
  278.         "name": "Times New Roman",
  279.         "size": 22,
  280.         "smallCaps": true,
  281.         "italic": false,
  282.         "color": [255, 255, 255, 255]
  283.     }
  284. }
  285.  
  286. ###
  287. # Small Size text used for save-game slot descriptions.
  288. ###
  289. ui.UIManager.styles.saveGameUIText = {
  290.     "font": {
  291.         "name": "Times New Roman",
  292.         "size": 20,
  293.         "smallCaps": true,
  294.         "italic": false,
  295.         "color": [255, 255, 255, 255]
  296.     }
  297. }
  298.  
  299. ###
  300. # Regular message text style for use in backlog, etc.
  301. ###
  302. ui.UIManager.styles.messageText = {
  303.     "font": { "name": "Times New Roman", "size": gs.UIConstants.TEXT_SIZE_MESSAGE, "smallCaps": false, "italic": false,"border": true, "borderSize": 4 }
  304. }
  305.  
  306. ###
  307. # Ruby text style.
  308. # If size-property is not present, the half of the current font-size is used.
  309. # If color-property is not present, the current font-color is used.
  310. ###
  311. ui.UIManager.styles.rubyText = {
  312.     "font": { "name": "Times New Roman", "smallCaps": false, "italic": false,"border": true, "borderSize": 4 }
  313. }
  314.  
  315. ###
  316. # Text for ADV game messages.
  317. ###
  318. ui.UIManager.styles.advMessageText = {
  319.     "font": { "name": "Times New Roman", "size": gs.UIConstants.TEXT_SIZE_MESSAGE, "smallCaps": false, "italic": false,"outline": { "size": 4, "color": [0, 0, 0, 255] } }
  320. }
  321.  
  322. ###
  323. # Text for NVL game messages.
  324. ###
  325. ui.UIManager.styles.nvlMessageText = {
  326.     "font": { "name": "Times New Roman", "size": gs.UIConstants.TEXT_SIZE_MESSAGE, "smallCaps": false, "italic": false,"border": true, "borderSize": 4 }
  327. }
  328.  
  329. ###
  330. # Text for custom message areas.
  331. ###
  332. ui.UIManager.styles.customMessageText = {
  333.     "font": { "name": "Times New Roman", "size": gs.UIConstants.TEXT_SIZE_MESSAGE_NAME, "smallCaps": false, "italic": false,"border": true  },
  334. }
  335. ###
  336. # Used to display the current character's name.
  337. ###
  338. ui.UIManager.styles.messageBoxNameText = {
  339.     "font": { "name": "Times New Roman", "size": gs.UIConstants.TEXT_SIZE_MESSAGE_NAME, "smallCaps": false, "italic": false,"border": true, "borderSize": 4 }
  340. }
  341.  
  342. ###
  343. # Used for number-input entries showing you the current number you have entered so far.
  344. ###
  345. ui.UIManager.styles.numberInputEntryText = {
  346.     "font": { "name": "Times New Roman", "size": 90, "color": [0, 0, 0, 255] }
  347. }
  348.  
  349. ###
  350. # Used for number-input for each single digit.
  351. ###
  352. ui.UIManager.styles.numberInputDigitText = {
  353.     "font": { "name": "Times New Roman", "size": 35 }
  354. }
  355.  
  356. ###
  357. # Used for text-input entries showing you the current text you have entered so far.
  358. ###
  359. ui.UIManager.styles.textInputEntryText = {
  360.     "font": { "name": "Times New Roman", "size": 90, "color": [0, 0, 0, 255] }
  361. }
  362.  
  363. ###
  364. # Used for text-input for each single letter.
  365. ###
  366. ui.UIManager.styles.textInputLetterText = {
  367.     "font": { "name": "Times New Roman", "size": 25 }
  368. }
  369.  
  370. ###
  371. # Defines the color used for the name-column of the message backlog.
  372. ###
  373. ui.UIManager.styles.backlogNamePanel = {
  374.     "color": [255, 255, 255, 40]
  375. }
  376.  
  377. ###
  378. # Defines the color used for the message-column of the message backlog.
  379. ###
  380. ui.UIManager.styles.backlogMessagePanel = {
  381.     "color": [0, 0, 0, 160]
  382. }
  383.  
  384. ###
  385. # Defines the font used for the name-column of the message backlog.
  386. ###
  387. ui.UIManager.styles.backlogNameText = {
  388.     "font": { "name": "Times New Roman", "size": gs.UIConstants.TEXT_SIZE_MESSAGE_NAME, "smallCaps": false, "italic": false,"border": true, "borderSize": 4 }
  389. }
  390.  
  391. ###
  392. # Defines the color used for sub-areas on a window a category-column,etc.
  393. ###
  394. ui.UIManager.styles["hyperlink"] = {
  395.     "font": {  "color": [255, 255, 255, 255], "name": "Poly-Regular", "size": 30, "smallCaps": false, "italic": false,"border": true, "borderSize": 4 }
  396. }
  397. ui.UIManager.styles["hyperlink:hover"] = {
  398.     "font": { "color": [255, 0, 0, 255], "name": "Poly-Regular", "size": 30, "smallCaps": false, "italic": false,"border": true, "borderSize": 4 }
  399. }
  400.  
  401. ###
  402. # Defines the color used for sub-areas on a window a category-column,etc.
  403. ###
  404. ui.UIManager.styles.windowSubPanel = {
  405.     "color": [255, 255, 255, 20]
  406. }
  407.  
  408. ###
  409. # Defines the color used for the separator-line to separate a window's title-area from its actual content.
  410. ###
  411. ui.UIManager.styles.windowContentSeparator = {
  412.     "color": [111, 111, 111]
  413. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement