Redesigned Colors and Icons (RCI) v.

[BNW] Redesigned Colors and Icons (RCI) 2-7-2019: v. 3.0

IIRC this has been discussed several times in the forum. This is impossible to fix due to the Civ5 engine. The only way yo avoid this problem is change the mod into something which can put into the Civ5 directory directly, instead of make a real mod which need to enable from the mod menu.

Estebanium, the creator of the texture enhancement mod in this section just did that for his mod (put it into the directory instead of the mod menu), so Dylan, he'd be a great person to ask if you aren't sure how to do it.
 
These are beautiful, but I must admit, there are a select few that are the new "ugly" to me (looking at you, France). Is changing one or two civs colors a lot of work if I were to do it myself, and if not, how would I go about doing it? If my assumption is correct, you'd have to change both the borders and the icon, but the icon is the harder part. Is this also true?

Thanks to anyone for any insight offered. I'd really like to have France with their traditional dark blue/yellow colors.
 
Estebanium, the creator of the texture enhancement mod in this section just did that for his mod (put it into the directory instead of the mod menu), so Dylan, he'd be a great person to ask if you aren't sure how to do it.

Funny you guys mention that, because the direct, directory version was the first one I made, and has been online for a while. Only because there was a lot of demand for a steam version did I make one.

Once I update the direct mod this week, that should solve the issues.

Takagi Hiro: If you're using the direct mod, you would have to change the colors in the xml files, as well as edit the .dds files in a program like photoshop, and getting consistent gradients without a template would be difficult.

However, I have changed France slightly in the Steam version. If you wait until later in the week, the direct version will have that update and perhaps you'll like it better.
 
Takagi Hiro: If you're using the direct mod, you would have to change the colors in the xml files, as well as edit the .dds files in a program like photoshop, and getting consistent gradients without a template would be difficult.

However, I have changed France slightly in the Steam version. If you wait until later in the week, the direct version will have that update and perhaps you'll like it better.
The first part isn't so hard, but you definitely lost me on the second... How difficult are we talking? I'm open to learning.

But, yeah. I see where you were going with France, but they look like a blueberry donut. It doesn't feel very... French. Yet, at same time, the old Sweden was too garish, and I'm guessing you were trying to avoid that for France. Your new Sweden is absolutely gorgeous, though, so great job on them!

I'm also kinda bitter towards the Iroquois. I know those are their historical colors, but it doesn't transition super well to the game, in my opinion. It looks like Carthage 2.0, but I never liked their colors to begin with, so perhaps that one's just me. :crazyeye:
 
The first part isn't so hard, but you definitely lost me on the second... How difficult are we talking? I'm open to learning.

But, yeah. I see where you were going with France, but they look like a blueberry donut. It doesn't feel very... French. Yet, at same time, the old Sweden was too garish, and I'm guessing you were trying to avoid that for France. Your new Sweden is absolutely gorgeous, though, so great job on them!

I'm also kinda bitter towards the Iroquois. I know those are their historical colors, but it doesn't transition super well to the game, in my opinion. It looks like Carthage 2.0, but I never liked their colors to begin with, so perhaps that one's just me. :crazyeye:

Just delete the UPDATE strings of France in the XML file so you can use the original French colour.
Code:
<?xml version="1.0" encoding="utf-8"?>
<!-- Created by ModBuddy on 8/9/2015 3:55:27 PM -->
<GameData>
	<PlayerColors>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_AMERICA_ICON"/>
			<Where Type="PLAYERCOLOR_AMERICA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_AMERICA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_AMERICA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_ARABIA_ICON"/>
			<Where Type="PLAYERCOLOR_ARABIA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_ARABIA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_ARABIA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_AZTEC_ICON"/>
			<Where Type="PLAYERCOLOR_AZTEC"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_AZTEC_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_AZTEC"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_CHINA_ICON"/>
			<Where Type="PLAYERCOLOR_CHINA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_CHINA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_CHINA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_EGYPT_ICON"/>
			<Where Type="PLAYERCOLOR_EGYPT"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_EGYPT_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_EGYPT"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_ENGLAND_ICON"/>
			<Where Type="PLAYERCOLOR_ENGLAND"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_ENGLAND_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_ENGLAND"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_GERMANY_ICON"/>
			<Where Type="PLAYERCOLOR_GERMANY"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_GERMANY_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_GERMANY"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_GREECE_ICON"/>
			<Where Type="PLAYERCOLOR_GREECE"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_GREECE_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_GREECE"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_INDIA_ICON"/>
			<Where Type="PLAYERCOLOR_INDIA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_INDIA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_INDIA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_IROQUOIS_ICON"/>
			<Where Type="PLAYERCOLOR_IROQUOIS"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_IROQUOIS_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_IROQUOIS"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_JAPAN_ICON"/>
			<Where Type="PLAYERCOLOR_JAPAN"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_JAPAN_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_JAPAN"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_OTTOMAN_ICON"/>
			<Where Type="PLAYERCOLOR_OTTOMAN"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_OTTOMAN_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_OTTOMAN"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_PERSIA_ICON"/>
			<Where Type="PLAYERCOLOR_PERSIA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_PERSIA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_PERSIA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_ROME_ICON"/>
			<Where Type="PLAYERCOLOR_ROME"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_ROME_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_ROME"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_RUSSIA_ICON"/>
			<Where Type="PLAYERCOLOR_RUSSIA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_RUSSIA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_RUSSIA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_SIAM_ICON"/>
			<Where Type="PLAYERCOLOR_SIAM"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_SIAM_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_SIAM"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_SONGHAI_ICON"/>
			<Where Type="PLAYERCOLOR_SONGHAI"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_SONGHAI_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_SONGHAI"/>
		</Update>
		<!--DLC-->
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_MONGOL_ICON"/>
			<Where Type="PLAYERCOLOR_MONGOL"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_MONGOL_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_MONGOL"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_INCA_ICON"/>
			<Where Type="PLAYERCOLOR_INCA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_INCA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_INCA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_SPAIN_ICON"/>
			<Where Type="PLAYERCOLOR_SPAIN"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_SPAIN_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_SPAIN"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_POLYNESIA_ICON"/>
			<Where Type="PLAYERCOLOR_POLYNESIA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_POLYNESIA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_POLYNESIA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_DENMARK_ICON"/>
			<Where Type="PLAYERCOLOR_DENMARK"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_DENMARK_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_DENMARK"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_KOREA_ICON"/>
			<Where Type="PLAYERCOLOR_KOREA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_KOREA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_KOREA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_BABYLON_ICON"/>
			<Where Type="PLAYERCOLOR_BABYLON"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_BABYLON_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_BABYLON"/>
		</Update>
		<!--Expansion1-->
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_AUSTRIA_ICON"/>
			<Where Type="PLAYERCOLOR_AUSTRIA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_AUSTRIA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_AUSTRIA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_BYZANTIUM_ICON"/>
			<Where Type="PLAYERCOLOR_BYZANTIUM"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_BYZANTIUM_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_BYZANTIUM"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_CARTHAGE_ICON"/>
			<Where Type="PLAYERCOLOR_CARTHAGE"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_CARTHAGE_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_CARTHAGE"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_CELTS_ICON"/>
			<Where Type="PLAYERCOLOR_CELTS"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_CELTS_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_CELTS"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_ETHIOPIA_ICON"/>
			<Where Type="PLAYERCOLOR_ETHIOPIA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_ETHIOPIA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_ETHIOPIA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_HUNS_ICON"/>
			<Where Type="PLAYERCOLOR_HUNS"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_HUNS_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_HUNS"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_MAYA_ICON"/>
			<Where Type="PLAYERCOLOR_MAYA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_MAYA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_MAYA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_NETHERLANDS_ICON"/>
			<Where Type="PLAYERCOLOR_NETHERLANDS"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_NETHERLANDS_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_NETHERLANDS"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_SWEDEN_ICON"/>
			<Where Type="PLAYERCOLOR_SWEDEN"/>
		</Update>

		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_SWEDEN_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_SWEDEN"/>
		</Update>
		<!--Expansion2-->
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_ASSYRIA_ICON"/>
			<Where Type="PLAYERCOLOR_ASSYRIA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_ASSYRIA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_ASSYRIA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_BRAZIL_ICON"/>
			<Where Type="PLAYERCOLOR_BRAZIL"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_BRAZIL_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_BRAZIL"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_INDONESIA_ICON"/>
			<Where Type="PLAYERCOLOR_INDONESIA"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_INDONESIA_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_INDONESIA"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_MOROCCO_ICON"/>
			<Where Type="PLAYERCOLOR_MOROCCO"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_MOROCCO_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_MOROCCO"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_POLAND_ICON"/>
			<Where Type="PLAYERCOLOR_POLAND"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_POLAND_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_POLAND"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_PORTUGAL_ICON"/>
			<Where Type="PLAYERCOLOR_PORTUGAL"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_PORTUGAL_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_PORTUGAL"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_SHOSHONE_ICON"/>
			<Where Type="PLAYERCOLOR_SHOSHONE"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_SHOSHONE_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_SHOSHONE"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_VENICE_ICON"/>
			<Where Type="PLAYERCOLOR_VENICE"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_VENICE_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_VENICE"/>
		</Update>
		<Update>
			<Set PrimaryColor="NEW_COLOR_PLAYER_ZULU_ICON"/>
			<Where Type="PLAYERCOLOR_ZULU"/>
		</Update>
		<Update>
			<Set SecondaryColor="NEW_COLOR_PLAYER_ZULU_BACKGROUND"/>
			<Where Type="PLAYERCOLOR_ZULU"/>
		</Update>
		--
	</PlayerColors>
</GameData>

Code:
<?xml version="1.0" encoding="utf-8"?>
<!-- Created by ModBuddy on 8/9/2015 5:38:55 PM -->
<GameData>
	<Civilizations>
		<Update>
			<Set PortraitIndex="0"/>
			<Where Type="CIVILIZATION_AMERICA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_AMERICA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_AMERICA"/>
		</Update>
		<Update>
			<Set PortraitIndex="1"/>
			<Where Type="CIVILIZATION_ARABIA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_ARABIA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_ARABIA"/>
		</Update>
		<Update>
			<Set PortraitIndex="2"/>
			<Where Type="CIVILIZATION_AZTEC"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_AZTEC"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_AZTEC"/>
		</Update>
		<Update>
			<Set PortraitIndex="3"/>
			<Where Type="CIVILIZATION_CHINA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_CHINA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_CHINA"/>
		</Update>
		<Update>
			<Set PortraitIndex="4"/>
			<Where Type="CIVILIZATION_EGYPT"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_EGYPT"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_EGYPT"/>
		</Update>
		<Update>
			<Set PortraitIndex="5"/>
			<Where Type="CIVILIZATION_ENGLAND"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_ENGLAND"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_ENGLAND"/>
		</Update>
		<Update>
			<Set PortraitIndex="7"/>
			<Where Type="CIVILIZATION_GERMANY"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_GERMANY"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_GERMANY"/>
		</Update>
		<Update>
			<Set PortraitIndex="8"/>
			<Where Type="CIVILIZATION_GREECE"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_GREECE"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_GREECE"/>
		</Update>
		<Update>
			<Set PortraitIndex="9"/>
			<Where Type="CIVILIZATION_INDIA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_INDIA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_INDIA"/>
		</Update>
		<Update>
			<Set PortraitIndex="10"/>
			<Where Type="CIVILIZATION_IROQUOIS"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_IROQUOIS"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_IROQUOIS"/>
		</Update>
		<Update>
			<Set PortraitIndex="11"/>
			<Where Type="CIVILIZATION_JAPAN"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_JAPAN"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_JAPAN"/>
		</Update>
		<Update>
			<Set PortraitIndex="12"/>
			<Where Type="CIVILIZATION_OTTOMAN"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_OTTOMAN"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_OTTOMAN"/>
		</Update>
		<Update>
			<Set PortraitIndex="13"/>
			<Where Type="CIVILIZATION_PERSIA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_PERSIA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_PERSIA"/>
		</Update>
		<Update>
			<Set PortraitIndex="14"/>
			<Where Type="CIVILIZATION_ROME"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_ROME"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_ROME"/>
		</Update>
		<Update>
			<Set PortraitIndex="15"/>
			<Where Type="CIVILIZATION_RUSSIA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_RUSSIA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_RUSSIA"/>
		</Update>
		<Update>
			<Set PortraitIndex="16"/>
			<Where Type="CIVILIZATION_SIAM"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_SIAM"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_SIAM"/>
		</Update>
		<Update>
			<Set PortraitIndex="17"/>
			<Where Type="CIVILIZATION_SONGHAI"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_SONGHAI"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_SONGHAI"/>
		</Update>
		<Update>
			<Set PortraitIndex="18"/>
			<Where Type="CIVILIZATION_MONGOL"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_MONGOL"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_MONGOL"/>
		</Update>
		<Update>
			<Set PortraitIndex="19"/>
			<Where Type="CIVILIZATION_INCA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_INCA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_INCA"/>
		</Update>
		<Update>
			<Set PortraitIndex="20"/>
			<Where Type="CIVILIZATION_SPAIN"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_SPAIN"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_SPAIN"/>
		</Update>
		<Update>
			<Set PortraitIndex="21"/>
			<Where Type="CIVILIZATION_POLYNESIA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_POLYNESIA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_POLYNESIA"/>
		</Update>
		<Update>
			<Set PortraitIndex="22"/>
			<Where Type="CIVILIZATION_DENMARK"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_DENMARK"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_DENMARK"/>
		</Update>
		<Update>
			<Set PortraitIndex="23"/>
			<Where Type="CIVILIZATION_KOREA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_KOREA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_KOREA"/>
		</Update>
		<Update>
			<Set PortraitIndex="24"/>
			<Where Type="CIVILIZATION_BABYLON"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_BABYLON"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_BABYLON"/>
		</Update>
		<Update>
			<Set PortraitIndex="25"/>
			<Where Type="CIVILIZATION_AUSTRIA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_AUSTRIA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_AUSTRIA"/>
		</Update>
		<Update>
			<Set PortraitIndex="26"/>
			<Where Type="CIVILIZATION_BYZANTIUM"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_BYZANTIUM"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_BYZANTIUM"/>
		</Update>
		<Update>
			<Set PortraitIndex="27"/>
			<Where Type="CIVILIZATION_CARTHAGE"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_CARTHAGE"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_CARTHAGE"/>
		</Update>
		<Update>
			<Set PortraitIndex="28"/>
			<Where Type="CIVILIZATION_CELTS"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_CELTS"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_CELTS"/>
		</Update>
		<Update>
			<Set PortraitIndex="29"/>
			<Where Type="CIVILIZATION_ETHIOPIA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_ETHIOPIA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_ETHIOPIA"/>
		</Update>
		<Update>
			<Set PortraitIndex="30"/>
			<Where Type="CIVILIZATION_HUNS"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_HUNS"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_HUNS"/>
		</Update>
		<Update>
			<Set PortraitIndex="31"/>
			<Where Type="CIVILIZATION_MAYA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_MAYA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_MAYA"/>
		</Update>
		<Update>
			<Set PortraitIndex="32"/>
			<Where Type="CIVILIZATION_NETHERLANDS"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_NETHERLANDS"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_NETHERLANDS"/>
		</Update>
		<Update>
			<Set PortraitIndex="33"/>
			<Where Type="CIVILIZATION_SWEDEN"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_SWEDEN"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_SWEDEN"/>
		</Update>
		<Update>
			<Set PortraitIndex="34"/>
			<Where Type="CIVILIZATION_ASSYRIA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_ASSYRIA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_ASSYRIA"/>
		</Update>
		<Update>
			<Set PortraitIndex="35"/>
			<Where Type="CIVILIZATION_BRAZIL"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_BRAZIL"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_BRAZIL"/>
		</Update>
		<Update>
			<Set PortraitIndex="36"/>
			<Where Type="CIVILIZATION_INDONESIA"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_INDONESIA"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_INDONESIA"/>
		</Update>
		<Update>
			<Set PortraitIndex="37"/>
			<Where Type="CIVILIZATION_MOROCCO"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_MOROCCO"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_MOROCCO"/>
		</Update>
		<Update>
			<Set PortraitIndex="38"/>
			<Where Type="CIVILIZATION_POLAND"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_POLAND"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_POLAND"/>
		</Update>
		<Update>
			<Set PortraitIndex="39"/>
			<Where Type="CIVILIZATION_PORTUGAL"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_PORTUGAL"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_PORTUGAL"/>
		</Update>
		<Update>
			<Set PortraitIndex="40"/>
			<Where Type="CIVILIZATION_SHOSHONE"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_SHOSHONE"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_SHOSHONE"/>
		</Update>
		<Update>
			<Set PortraitIndex="41"/>
			<Where Type="CIVILIZATION_VENICE"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_VENICE"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_VENICE"/>
		</Update>
		<Update>
			<Set PortraitIndex="42"/>
			<Where Type="CIVILIZATION_ZULU"/>
		</Update>
		<Update>
			<Set IconAtlas="ATLAS_REDESIGNED"/>
			<Where Type="CIVILIZATION_ZULU"/>
		</Update>
		<Update>
			<Set AlphaIconAtlas="ATLAS_REDESIGNED_ALPHA"/>
			<Where Type="CIVILIZATION_ZULU"/>
		</Update>
	</Civilizations>
</GameData>
 
Just delete the UPDATE strings of France in the XML file so you can use the original French colour.
Thank you for this! I'm hoping I won't have to revert to the basics, though. I really like dylansan's vision for a lot of these. I'm hoping to find France more appealing in the update.
 
Thank you for this! I'm hoping I won't have to revert to the basics, though. I really like dylansan's vision for a lot of these. I'm hoping to find France more appealing in the update.

You might not. It's mostly the same but a little brighter. Honestly I'm not sold on it myself but I haven't found a combination that works and doesn't require me to change any others.

The Iroquois, however, now have a purple background so it shouldn't remind you of Carthage anymore.
 
I'd like to echo the call for having Dylansan do a religious colors mod. :)
 
You might not. It's mostly the same but a little brighter. Honestly I'm not sold on it myself but I haven't found a combination that works and doesn't require me to change any others.

The Iroquois, however, now have a purple background so it shouldn't remind you of Carthage anymore.
Ah, then I may have to revert... Hopefully they look a little better, though. Good to hear about the Iroquois, though, surely.
 
Any more updates being planned for this? I was kinda looking forward to that change to the Iroquois, but it never came. :cringe:
 
The non-steam version (assets folder) has been updated, possibly for the final time. Unless there are unforeseen bugs, I'm moving on from this project.

http://forums.civfanatics.com/resources/redesigned-colors-and-icons-v-1-3.24109/

Thanks everyone for your support! I still appreciate and listen to comments, suggestions, and any info about bugs, but I have no plans to change any more color schemes at this time. We'll see how well Civ 6 does in that area, because I might be interested in sprucing it up. :D
 
The non-steam version (assets folder) has been updated, possibly for the final time. Unless there are unforeseen bugs, I'm moving on from this project.

http://forums.civfanatics.com/resources/redesigned-colors-and-icons-v-1-3.24109/

Thanks everyone for your support! I still appreciate and listen to comments, suggestions, and any info about bugs, but I have no plans to change any more color schemes at this time. We'll see how well Civ 6 does in that area, because I might be interested in sprucing it up. :D
Wow, and the wait was so worth it! You totally brought France back to life; the lighter color gives it what it desperately needed. And the Iroquois look spectacular, as well.

Thank you for all your work on the project! I am happy with this being the final release. :)
 
The non-steam version (assets folder) has been updated, possibly for the final time. Unless there are unforeseen bugs, I'm moving on from this project.

http://forums.civfanatics.com/resources/redesigned-colors-and-icons-v-1-3.24109/

Thanks everyone for your support! I still appreciate and listen to comments, suggestions, and any info about bugs, but I have no plans to change any more color schemes at this time. We'll see how well Civ 6 does in that area, because I might be interested in sprucing it up. :D

Huge thanks for making this mod! I use it in every game.
 
Turns out Denmark's emblem isn't showing properly in the civ select screen (and perhaps some other places, as a result). Warrants another look!
 
Turns out Denmark's emblem isn't showing properly in the civ select screen (and perhaps some other places, as a result). Warrants another look!
I was worried for a moment that I'd have to dig through the files and figure out where I went wrong, but I realized my mistake immediately: I forgot to hide the black background when I exported the files from Photoshop. :D

All fixed now. Let me know if there's any other issues. I'll be honest, I didn't do much testing this time around, so it's very possible some colors are wrong or bugged. If you notice any civ borders or cities whose colors don't match their icon, let me know. Since I just copied and pasted from the Steam version, there shouldn't be any errors, but I won't rule it out.

Thanks for the heads up. :thumbsup:
 
I was worried for a moment that I'd have to dig through the files and figure out where I went wrong, but I realized my mistake immediately: I forgot to hide the black background when I exported the files from Photoshop. :D

All fixed now. Let me know if there's any other issues. I'll be honest, I didn't do much testing this time around, so it's very possible some colors are wrong or bugged. If you notice any civ borders or cities whose colors don't match their icon, let me know. Since I just copied and pasted from the Steam version, there shouldn't be any errors, but I won't rule it out.

Thanks for the heads up. :thumbsup:
Will do! Everything seems fine so far, though! I didn't see anything out of the ordinary except for Denmark.
 
Is an excellent mod. Nice to play with your civilisation with your preferred Colour. I like the Poland Color but Poland Color values were not indicated. Can add Poland Color values.
 
Is there a way to remove this pack in its entirety, reverting to the default Civ icons and colours?
 
Is there a way to remove this pack in its entirety, reverting to the default Civ icons and colours?
That is a bit of an annoyance with this pack. The easiest way would be to delete your assets folder and replace it with the backup you made when you installed it. Or if, like me, you didn't make a backup, simply "verify integrity" of game files through Steam. The download might take a while though. If that's an issue, you might be able to go through and delete specifically the files included in the mod. Much more tedious, but when you verify the game files it shouldn't take long at all.

Fortunately, in the next few days I should have a version that isn't so invasive and is just a folder you place in the DLC folder (like EUI if you use that). In that case, disabling is as easy as removing the folder.

Once that's out, I'd recommend everyone using the mod remove it in the above manner and use the updated version. It might be a pain, but will make enabling/disabling it much simpler.

Thanks for bearing with me on that.
 
Last edited:
Top Bottom