A Color Palette manifest file enables you to define color palettes for your portal. A color palette can include:

The following sample shows an abbreviated manifest for a single color palette:

<!-- FILE HEADER GOES HERE --!>

<color-palettes>

  <color-palette name="Classic" version="1.0" author="ATG Portal Team">
    <description>Classic</description>
    <servlet-context>/portal</servlet-context>
      <images>
<!-- Icon for color selection pages --!>
        <image type="small">
          <url>/templates/color/images/classic.gif</url>
        </image>
      </images>
    <entity type="page-body">
      <colors>
        <color type="background">cccccc</color>
        <color type="text">000000</color>
        <color type="link">336699</color>
        <color type="action-link">336699</color>
        <color type="visited-link">006666</color>
      </colors>
    </entity>
    <entity type="gear-body">
      <colors>
        <color type="background">ffffff</color>
        <color type="text">666666</color>
      </colors>
    </entity>
    <entity type="gear-title">
      <colors>
        <color type="background">006666</color>
        <color type="text">ffffff</color>
      </colors>
    </entity>
  </color-palette>

<!-- ADDITIONAL COLOR PALETTES GO HERE --!>

</color-palettes>

For details about the tags and attributes you can use in a Color Palette manifest file, see Color Palette Manifest Elements in Appendix A, Portal Manifest Reference.

 
loading table of contents...