![]() |
|
|||||||
|
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Like in title. I have created a custom Color scheme and would like to add this to the Built-in options under Color in the Design Tab. I have added the XML file to both C:\Program Files (x86)\Microsoft Office\Document Themes 14\Theme Colors and C:\Users\xxx\AppData\Roaming\Microsoft\Templates\D ocument Themes\Theme Colors This has done nothing to any PowerPoint documents. The only way I can add Custom colors in, is through PowerPoint directly creating the theme. Is there anyway I could get this XML to show up by default on every load of the software? |
|
#2
|
|||
|
|||
|
Assuming the XML is correct you should be able to see them (and choose them) in Design Tab > Colors
They should appear in the Custom Section. |
|
#3
|
|||
|
|||
|
Quote:
This does not happen. I have confirmed that the XML is correct and only loads if I manually load into Powerpoint on each instance of the program. |
|
#4
|
|||
|
|||
|
So - just to check. Does your XML look like this:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<a:clrScheme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="myColors">
<a:dk1>
<a:sysClr val="windowText" lastClr="000000"/>
</a:dk1>
<a:lt1>
<a:sysClr val="window" lastClr="FFFFFF"/>
</a:lt1>
<a:dk2>
<a:srgbClr val="1F497D"/>
</a:dk2>
<a:lt2>
<a:srgbClr val="EEECE1"/>
</a:lt2>
<a:accent1>
<a:srgbClr val="4F81BD"/>
</a:accent1>
<a:accent2>
<a:srgbClr val="C0504D"/>
</a:accent2>
<a:accent3>
<a:srgbClr val="9BBB59"/>
</a:accent3>
<a:accent4>
<a:srgbClr val="8064A2"/>
</a:accent4>
<a:accent5>
<a:srgbClr val="4BACC6"/>
</a:accent5>
<a:accent6>
<a:srgbClr val="F79646"/>
</a:accent6>
<a:hlink>
<a:srgbClr val="0000FF"/>
</a:hlink>
<a:folHlink>
<a:srgbClr val="800080"/>
</a:folHlink>
</a:clrScheme>
|
|
#5
|
|||
|
|||
|
Here is an exact copy of my XML
<?xml version="1.0" encoding="UTF-8"?> -<a:clrScheme xmlns:a="" name="xxx"> -<a:dk1> <a:srgbClr val="E10000"/> </a:dk1> -<a:lt1> <a:srgbClr val="2C414D"/> </a:lt1> -<a:dk2> <a:srgbClr val="675E47"/> </a:dk2> -<a:lt2> <a:srgbClr val="000000"/> </a:lt2> -<a:accent1> <a:srgbClr val="8B8B8E"/> </a:accent1> -<a:accent2> <a:srgbClr val="D4D2CF"/> </a:accent2> -<a:accent3> <a:srgbClr val="C4B8A6"/> </a:accent3> -<a:accent4> <a:srgbClr val="00AEEF"/> </a:accent4> -<a:accent5> <a:srgbClr val="F58220"/> </a:accent5> -<a:accent6> <a:srgbClr val="FFDB00"/> </a:accent6> -<a:hlink> <a:srgbClr val="6FBE44"/> </a:hlink> -<a:folHlink> <a:srgbClr val="5C8DB6"/> </a:folHlink> </a:clrScheme> |
|
#6
|
|||
|
|||
|
It's not correct. You must add the schema if you want PPT to recognise it. "http://schemas.openxmlformats.org/drawingml/2006/main"
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<a:clrScheme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="xxx">
<a:dk1>
<a:srgbClr val="E10000"/>
</a:dk1>
<a:lt1>
<a:srgbClr val="2C414D"/>
</a:lt1>
<a:dk2>
<a:srgbClr val="675E47"/>
</a:dk2>
<a:lt2>
<a:srgbClr val="000000"/>
</a:lt2>
<a:accent1>
<a:srgbClr val="8B8B8E"/>
</a:accent1>
<a:accent2>
<a:srgbClr val="D4D2CF"/>
</a:accent2>
<a:accent3>
<a:srgbClr val="C4B8A6"/>
</a:accent3>
<a:accent4>
<a:srgbClr val="00AEEF"/>
</a:accent4>
<a:accent5>
<a:srgbClr val="F58220"/>
</a:accent5>
<a:accent6>
<a:srgbClr val="FFDB00"/>
</a:accent6>
<a:hlink>
<a:srgbClr val="6FBE44"/>
</a:hlink>
<a:folHlink>
<a:srgbClr val="5C8DB6"/>
</a:folHlink>
</a:clrScheme>
Last edited by JohnWilson; 11-05-2013 at 02:52 AM. |
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Office 2007 Color Scheme issue | Rothalax | Office | 0 | 05-22-2013 06:03 AM |
Can't get the same color
|
lostsoul62 | Excel | 2 | 06-14-2012 08:32 PM |
Custom Color in word 2010?
|
guiri | Word | 8 | 11-06-2011 12:05 PM |
| Transfer custom views between self created PST and PST associated with email account | ghumdinger | Outlook | 0 | 09-18-2011 01:18 AM |
Word 2010 - Custom Color Deployment
|
Yipd | Word | 7 | 07-06-2011 12:27 AM |